-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
204 lines (166 loc) · 2.79 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
body {
font-family: 'Roboto', sans-serif;
font-weight: bold;
margin: 0 5%;
background-color: black;
color: white;
}
svg {
cursor: pointer;
}
.ligth {
background-color: white;
color: black;
}
.ligth svg path {
fill: #000000;
}
#btn-tema {
margin-left: 130px;
}
.foto {
border-radius: 50%;
margin: 20px;
}
.introducao {
display: flex;
align-items: center;
justify-content: center;
}
.introducao-descricao {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.introducao-descricao p {
margin: 10px;
font-size: 18px;
}
.networks {
display: flex;
justify-content: flex-start;
margin: 2% 5%;
}
.networks h1 {
display: flex;
align-items: center;
margin: 5px;
font-size: 25px;
}
.networks-icons {
display: flex;
flex-direction: column;
margin: 5px;
}
.networks-icons img {
width: 120px;
border-radius: 5px;
}
.networks-icons img:hover {
transform: scale(1.1);
transition: all 1s;
margin: 1px;
}
.languages {
display: flex;
justify-content: flex-end;
margin: 2% 5%;
}
.languages h1 {
display: flex;
align-items: center;
margin: 5px;
font-size: 25px;
}
.languages-icons {
display: flex;
}
.languages-icons img {
width: 40px;
margin: 5px;
}
.languages-icons img:hover {
width: 40px;
margin: 5px;
transform: scale(1.1);
transition: all 0.5s;
}
.tools {
display: flex;
justify-content: flex-start;
margin: 5% 10%;
}
.tools h1 {
display: flex;
align-items: center;
margin: 5px;
font-size: 25px;
}
.tools-icons {
display: flex;
}
.tools-icons img {
width: 40px;
margin: 5px;
}
.tools-icons img:hover {
width: 40px;
margin: 5px;
transform: scale(1.1);
transition: all 0.5s;
}
.stats {
display: flex;
flex-direction: column;
text-align: center;
margin: 1% 10%;
}
.stats h1 {
display: flex;
align-items: center;
justify-content: center;
margin: 5px;
font-size: 25px;
}
.stats-img img {
margin: 5px;
}
@media screen and (max-width: 800px) {
main {
display: flex;
flex-direction: column;
align-items: center;
margin: 5px;
}
.languages h1,
.networks h1,
.tools h1,
.stats h1 {
font-size: 20px;
margin-top: 20px;
}
.introducao,
.languages,
.networks,
.tools,
.stats {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
}
.languages-icons,
.networks-icons,
.tools-icons {
display: flex;
justify-content: center;
}
.languages-icons,
.networks-icons,
.tools-icons img {
margin: 0px;
}
.stats img {
width: 100%;
}
}