-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleSec.css
109 lines (91 loc) · 1.93 KB
/
styleSec.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
98
99
100
101
102
103
104
105
106
107
108
109
:root{
--backgroundAll: #16161c;
--backgroundSec: #26183d;
--fonteColor: #c35bec;
--fonteColorSec: #ffffff;
--fonteColorEsc: #26183d;
--bordaCor: #382458;
--bordaBack: #412f66;
--bordaBackHover: #c35bec;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: var(--backgroundSec);
font-family: 'Arial', Times, serif;
font-size: 16px;
color: var(--fonteColorSec);
}
h1{
padding-top: 30px;
}
.divmenulateral{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
}
/*tratando a foto do perfil*/
#minhafoto{
border-radius: 50%;
width: 30%;
}
/*Fim tratando a foto do perfil*/
/*Formatação do menu*/
.linksMenu{
background: var(--bordaBack);
border-radius: 5px;
width: 250px;
height: 30px;
color: var(--fonteColorSec);
display: inline-block;
font: normal normal 16px/30px "Aileron Bold", sans-serif;
text-align: center;
text-decoration: none;
}
.divmenulateral a:hover{
background: var(--bordaBackHover);
color: var(--fonteColorEsc);
border-color: var(--bordaCor);
}
.listaMenu{
margin: 0;
padding: 0;
}
.listaMenu li{
list-style: none;
margin: 30px 0px 30px 0px; /*top direita inferior esquerda */
}
/*Fim da formatação do menu*/
#redessociais{
width: 100%;
height: auto;
background-size: cover;
margin-top: 20px;
display: flex;
flex-direction: row;
justify-content: center;
}
#redessociais a:hover{
color: var(--fonteColorSec);
}
#redessociais p{
margin-top: 30px;
}
.icons{
color:var(--fonteColor);
padding-right: 30px;
}
.iframe_imagem{
width: 100%;
height: 100%;
}
.imagemDescritiva{
width: 100%;
}