-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (55 loc) · 1.15 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css");
* {
margin: 0;
padding: 0;
}
:root {
--cor-fundo: #000;
--cor-primaria: #fff;
/* scroll-behavior: smooth; */
}
body {
background-color: var(--cor-fundo);
}
#texto {
width: 80%;
margin: 35vh auto;
background-color: var(--cor-fundo);
}
#texto p {
font-size: 3rem;
font-family: 'Noto Sans', sans-serif;
color: var(--cor-primaria);
line-height: 1.5;
}
.texto-normal {
transform: scale(1, 1);
transition: all .3s;
}
.texto-invertido {
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
transition: all .3s;
}
#controles {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 5px;
z-index: 1;
}
#controles button {
cursor: pointer;
background: #000;
border: 1px solid #fff;
padding: 5px;
}
#controles .bi {
color: #fff;
font-size: 1.5rem;
}