-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
97 lines (82 loc) · 1.57 KB
/
main.css
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
* {
font-family: sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}
header {
background: #394674;
color: #fff;
width: 100%;
padding: 0.5rem;
display: flex;
justify-content: center;
}
nav {
width: 100%;
padding: 0.5rem;
display: flex;
justify-content: center;
gap: 1rem;
}
form {
max-width: 1000px;
display: flex;
flex-direction: column;
padding: 2rem;
}
footer {
background: #394674;
color: #fff;
width: 100%;
padding: 0.5rem;
position: relative;
margin-top: auto;
display: flex;
justify-content: center;
bottom: 0;
}
#foto img {
display: block;
border-radius: 50%;
width: 150px;
}
#Login {
color: white;
margin-top: auto;
display: flex;
justify-content: center;
font-size: 13pt;
}
#FundosPalavras {
background-color: #394674; color: white;
}
#informacoes-perfil {
font-size: 15pt;
padding: 15px;
margin: 15px;
border-radius: 10px;
background-color: #394674;
color: white;
}
.item-painel {
margin: 10px;
padding: 10px;
border-radius: 5px;
background-color: white;
color:#394674;
}
.tabela tr:nth-child(even) {
background-color: #394674;
color: white;
}
#tabela th {
background-color: #394674;
color: white;
}