-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (86 loc) · 1.84 KB
/
style.css
File metadata and controls
102 lines (86 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
h1 {
text-align: center;
color: white;
}
h2 {
text-align: center;
}
body {
background-image: url('https://wallpaperaccess.com/full/8359896.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
label {
text-align: center;
font-size: large;
font-weight: bold;
font-family: serif;
margin-top: 10px;
}
input {
margin: auto;
border-radius: 4px;
}
button {
margin: auto;
padding: 15px 32px;
border-radius: 8px;
border-color: #d69f2f;
font-family: serif;
font-size: larger;
font-weight: bold;
color: #839d9c;
background-color: #1a3631;
transition-duration: 0.4s;
}
button:hover {
background-color: #2e5e56;
color: white;
}
table, th, td {
border-style: ridge;
border-collapse: collapse;
border-color: #d69f2f;
text-align: center;
font-family: serif;
font-size: larger;
}
.inserirDados {
display: flex;
flex-direction: column;
justify-content: center;
border-color: #d69f2f;
background-image: linear-gradient(to bottom right, #00dcf7, #009ebf, #005773);
border-radius: 8px;
border-style: outset;
margin-left: 450px;
margin-right: 450px;
}
.mostrarDados {
display: flex;
flex-direction: column;
justify-content: center;
color: black;
border: 5px solid #d69f2f;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 4px;
background-image: linear-gradient(to bottom right, #00dcf7, #009ebf, #005773);
margin-left: 450px;
margin-right: 450px;
}
.imgPerfil {
width: 23%;
border: 5px ridge #d69f2f;
display: block;
margin: auto;
}
.divTabela {
display: flex;
flex-direction: column;
justify-content: center;
}
.tabelaHeaders {
background-image: linear-gradient(to bottom right, #00dcf7, #009ebf, #005773);
}