-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (101 loc) · 2.42 KB
/
style.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
110
111
112
113
114
115
116
117
118
/* fontes */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@200;600&display=swap');
/* root */
:root{
--cor-primaria: #191825;
--cor-secundaria: #865DFF;
--cor-terciaria: #E384FF;
}
/* codigos */
* {
margin: 0px;
}
.cabecalho {
margin: 2% 10%;
}
.cabecalho nav {
display: flex;
gap: 2%;
}
.cabecalho nav a {
color: var(--cor-primaria);
}
body {
background-color: var(--cor-primaria);
color: #fff;
font-family: 'Montserrat', sans-serif;
}
.site{
display: flex;
flex-direction: column;
min-height: 100vh;
}
.site .container{
flex:1;
}
header {
background-color: #868686;
border-radius: 8px;
}
.container {
display: flex;
justify-content: center;
margin: 5% 10% 10% 10%;
/* width: 1023px; */
}
.container .conteudo {
width: 50%;
display: flex;
flex-direction: column;
gap: 10px;
}
.container .conteudo h1 {
font-family: 'Krona One', sans-serif;
}
.container .conteudo h1 span {
color: var(--cor-secundaria);
}
.container .conteudo p {
font-size: 1.2rem;
line-height: 1.5;
}
.container .conteudo .redes-sociais {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.container .conteudo .redes-sociais a {
width: 200px;
border: 2px solid var(--cor-terciaria);
padding: 8px 0px;
display: flex;
justify-content: center;
text-decoration: none;
border-radius: 10px;
gap: 8px;
}
.container .conteudo .redes-sociais a:visited {
color: var(--cor-terciaria);
}
footer {
text-align: center;
margin-bottom: 20px;
}
/* Responsividade */
@media (max-width: 800px){
/* body{
background-color: yellow;
} */
.container {
flex-direction: column;
flex-direction: column-reverse;
}
.container .conteudo, .container .avatar{
width: 100%;
}
.container .conteudo .redes-sociais a{
width: 100%;
}
}