-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (86 loc) · 1.38 KB
/
style.css
File metadata and controls
102 lines (86 loc) · 1.38 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 16px;
background: radial-gradient(circle at center, #6d526f 0%, #1a181a 100%);
color: #fcfcf9;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 20px;
}
.eu {
font-size: 1.5rem;
margin-bottom: 10px;
}
.dev1 {
font-family: "Angkor", cursive;
font-size: 3rem;
line-height: 1.2;
margin-bottom: 20px;
}
.icons {
display: flex;
gap: 20px;
margin-bottom: 30px;
}
.icons img {
width: 50px;
height: 50px;
}
.skils {
text-align: center;
}
.SKlogos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin: 15px 0;
}
.SKlogos img {
width: 50px;
height: 50px;
}
.futuras {
margin-top: 20px;
font-size: 1rem;
color: #ccc;
}
/* Responsividade */
@media (max-width: 768px) {
.dev1 {
font-size: 2rem;
}
.eu {
font-size: 1.2rem;
}
.icons img,
.SKlogos img {
width: 40px;
height: 40px;
}
}
@media (max-width: 480px) {
.dev1 {
font-size: 1.5rem;
}
.eu {
font-size: 1rem;
}
.icons img,
.SKlogos img {
width: 30px;
height: 30px;
}
}