-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-sheets.css
More file actions
66 lines (57 loc) · 1.13 KB
/
style-sheets.css
File metadata and controls
66 lines (57 loc) · 1.13 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
:root {
--between-icons: 8%;
--left-icons: 8%;
}
body {
background-color: rgb(250, 255, 250);
font-family: Arial, Helvetica, sans-serif;
}
.myicon {
position: fixed;
left: 3%;
top: 3%;
width: 15%;
height: auto
}
h2 {
color: rgb(100,100,100);
font-size: 2.5vw;
}
.sheetstext {
position: fixed;
left: calc(var(--left-icons) + 10% * 2 + 2 * var(--between-icons) - 2.5%);
top: calc(43vh + 7vw);
width: 15%;
height: auto;
text-align: center
}
.sheets {
position: fixed;
left: calc(var(--left-icons) + 10% * 2 + 2 * var(--between-icons));
top: 40%;
width: 10%;
height: auto;
}
.desmostext {
position: fixed;
left: calc(var(--left-icons) + 10% * 4 + 4 * var(--between-icons) - 2.5%);
top: calc(43vh + 7vw);
width: 15%;
height: auto;
text-align: center
}
.desmos {
position: fixed;
left: calc(var(--left-icons) + 10% * 4 + 4 * var(--between-icons));
top: 40%;
width: 10%;
height: auto;
}
.disclaimer {
position: fixed;
left: 10vw;
top: 10vw;
width: 80vw;
text-align: center;
font-size: max(1.25vw,1em);
}