-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (88 loc) · 1.5 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
body,
html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
}
body {
background-color: #1e1e1e;
color: #d4d4d4;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.centralizado {
width: 100%;
}
h1 {
margin: 0.5em 0;
font-size: 2.5em;
}
p {
margin: 0.5em 0;
}
img {
width: 16px;
height: 16px;
}
.menu-button {
position: fixed;
top: 0;
background-color: #1e1e1e;
color: #d4d4d4;
left: 0;
margin: 1em;
z-index: 1000;
background-color: transparent;
color: rgba(255, 255, 255, 0.863);
border: none;
cursor: pointer;
font-size: large;
}
.menu-button img {
width: 24px;
height: 24px;
}
.dropdown {
position: fixed;
top: 0;
right: 0;
margin: 1em;
z-index: 1000;
border: none;
}
.dropdown select {
padding: 0.5em;
font-size: small;
background-color: #1e1e1e;
color: #d4d4d4;
border: none;
border-radius: 5px;
outline: none;
}
.dropdown select:hover {
cursor: pointer;
background-color: #1e1e1e;
color: #d4d4d4;
}
.tecs {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0.5em 0;
font-size: medium;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #1e1e1e;
color: #d4d4d4;
text-align: center;
padding: 0.5em 0;
font-size: small;
}