-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.css
47 lines (39 loc) · 827 Bytes
/
settings.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
* {
margin-left: 20px;
margin-right: 20px;
}
/* Instruction Formatting */
code {
font-size: large;
}
#last-instruction {
margin-bottom: 2%;
}
/* Back-Arrow link */
.arrow-button {
display: inline-flex;
align-items: center;
justify-content: center;
margin-left: 0;
}
/* Back-Arrow Icon Image */
.icon {
width: 24px;
height: 24px;
transition: transform 0.3s ease;
filter: invert(31%) sepia(11%) saturate(236%) hue-rotate(112deg) brightness(92%) contrast(89%);
}
.arrow-button:hover .icon {
transform: scale(1.1);
}
body.darkmode .icon {
filter: invert(95%) sepia(0%) saturate(33%) hue-rotate(196deg) brightness(88%) contrast(94%);
}
#button-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
button {
padding: 3% 4%;
}