-
Notifications
You must be signed in to change notification settings - Fork 0
/
geral.css
59 lines (47 loc) · 878 Bytes
/
geral.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
* {
position: relative;
box-sizing: border-box;
justify-content: center;
background-size: cover;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
h1, h2 {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h1, h2, h3, p {
margin: 0;
}
p, strong, b {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
button {
border: none;
}
/* Estilização básica da barra de rolagem */
::-webkit-scrollbar {
width: 1vw;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #646dd1;
}
::-webkit-scrollbar-thumb:hover {
background: #0214DC;
}
@media screen and (max-width: 1920px) {
::-webkit-scrollbar, ::webkit-scrollbar-track {
width: none;
height: none;
}
}