-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (55 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none; /* remove o sublinhado dos links */
}
body {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #191622;
font-family: 'DM Sans', Helvetica, sans-serif;
}
.menu {
display: flex;
gap: 10px;
}
.menu-num,
.act {
width: 80px;
height: 80px;
border: 1px solid #988aa8;
color: #988aa8;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
font-weight: bold;
background-color: #13111b;
border-radius: 0.5rem;
transition: border-radius 0.1s;
}
.menu-num:hover {
border: 1px solid #78d1e1;
color: #78d1e1;
border-radius: 0.8rem;
}
.act {
border: 1px solid #c369c6;
color: #c369c6;
border-radius: 0.8rem;
}
.menu-title {
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
margin: 32px 0;
font-weight: bold;
font-size: 36px;
}