-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (65 loc) · 1.11 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
* {
transition: all 0.3s linear, background-color 0.1s ease;
}
#body-form {
min-height: 75%;
max-width: 90%;
margin-top: 5%;
}
.card-header {
width: 110%;
min-height: 50%;
margin-top: -5%;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#content > label {
width: calc(100% - 1rem);
padding-left: 0.5rem;
}
.color-navigator {
width: 1rem;
height: 1rem;
}
.feedbacks > *:not(:first-child) {
margin-top: 1rem;
}
.middle-x {
margin-left: 50%;
transform: translateX(-50%);
}
input[type="text"],
label {
font-size: 1.2rem !important;
}
input[type="range"] {
height: 0.5rem;
cursor: pointer;
}
output {
opacity: 0;
min-width: 3rem;
position: absolute;
left: 0;
bottom: 1.5rem;
margin-left: -0.1rem;
margin-top: 0.8rem;
}
output:before {
content: "";
border: 0.5rem solid transparent;
border-top-color: var(--bs-primary);
border-bottom: none;
position: absolute;
bottom: -0.5rem;
left: 50%;
transform: translateX(-50%);
}
input[type="range"]:hover ~ output {
opacity: 1;
}
.landing-screen {
text-align: center;
--bs-code-color : var(--bs-black)
}