-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (137 loc) · 3.29 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
* {
margin: 0;
padding: 0;
box-sizing: border-box; /*conta o tamanho da caixa a partir da borda sem somar o valor de padding*/
}
:root {
--bg: url(./assets/bg-yellow.svg);
--card-bg-color: #1D1C19;
--card-title-border-color: #746615;
--card-color-primary: #F7DD43;
}
body.green {
--bg: url(./assets/bg-green.svg);
--card-bg-color: #1A1F1B;
--card-title-border-color: #047C3F;
--card-color-primary: #047C3F;
}
ul {
list-style: none; /*retira os bullets da lista*/
}
body * {
font-family: 'Roboto', sans-serif;
}
body{
background-color: #121214;
background-image: var(--bg);
background-position: top center; /*centraliza a posicao horizontal e verfical*/
background-repeat: no-repeat;
background-size: cover;
}
#app {
width: fit-content; /*ajusta largura conforme a tela*/
margin: auto; /*tamanho ajustado automaticamente*/
padding-top: 52px;
}
header {
margin-bottom: 63px; /*distancia para o elemento superior*/
text-align: center;
}
#cards {
display: flex;
flex-direction: column;
gap: 32px;
}
.card {
padding: 32px 23px; /*preenchimento cima baixo e laterias, ou seja, distancia interna entre a borda da caixa e os elementos internos*/
text-align: center; /*alinha os elementos dentro da caixa*/
background: var(--card-bg-color);
border-bottom: 2px solid var(--card-color-primary);
border-radius: 6px;
}
.card h2 {
display: flex; /*junta os elementos*/
gap: 16px; /*px entre os elementos*/
justify-content: center;
align-items: center;
padding: 8px 16px;
border: 1px solid var(--card-title-border-color);
border-radius: 6px;
width: fit-content;
margin-inline: auto; /*oara deixar a caixa centralizada e nao comecando na esquerda devido ao flex*/
margin-bottom: 53px;
color: #F7DD43;
font-weight: 700px;
}
.card h2 span {
color: #E1E1E6;
font-size: 14px;
text-transform: uppercase;
}
.card ul {
display: flex;
flex-direction: column; /*indica ao flex colocar um elemento abaixo do outro*/
gap: 24px; /*espaco entre elementos*/
width: 270px;
}
.card ul li {
display: flex;
align-items: center;
justify-content: space-between;
}
.card ul li + li {
padding-top: 24px;
border-top: 1px solid #323238;
} /* utilizar o + cria o parametro entre o elemento atual e o anterior, ou seja, toda li que tiver uma li acima*/
.card ul li strong {
font-weight: 900;
font-size: 36px;
line-height: 125%;
color: #E1E1E6;
}
.card h2:hover,
.card ul li strong:hover,
.card ul li img:hover {
transform: scale(1.1);
}
.card h2,
.card ul li strong,
.card ul li img {
transition: transform 0.3s;
}
.card {
animation: apear .2s forwards; /*aplica o keyframe de animacao criado*/
}
@keyframes apear {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0px);
opacity: 100;
}
}
@media (min-width: 700px) {
#cards {
max-width: 1020px;
flex-direction: row;
flex-wrap: wrap;
}
}
footer {
margin: 8px;
padding-top: 5px;
font-weight: 400;
font-size: 14px;
line-height: 125%;
color: #E1E1E6;
text-align: center;
}
a:hover {
color: #746615;
}
a {
text-decoration: none;
color: #F7DD43;
}