-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
147 lines (130 loc) · 2.24 KB
/
styles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
background-color: rgb(49, 132, 143);
}
h1 {
color: rgb(54, 54, 54);
}
p {
color: rgb(78, 77, 77);
}
p.relative {
position: relative;
left: 30px;
border: 3px solid #73AD21;
}
/*Next button*/
button.css-1cpxqw2{
background-color:rgba(111, 111, 111, 0.018);
padding-right: 30px;
padding-left: 30px;
right: -1020px;
position: relative
}
/*Right center compare button: Label and square
div.css-1djdyxw.ek41t0m0{
left: 130px;
display: inline-block;
position: relative;
top: 2px
}
span.st-ev {
left: 225px;
position: relative;
}
div.css-v561tt{
gap: 0rem;
}
div.css-ocqkz7{
gap: 0rem;
}
div.css{
gap: 0rem;
}
div.css-1l0ei5a{
gap: 0rem;
}
div.css-ib6r8f{
gap: 0rem;
}
div.css-1a7jz76{
gap: 0rem;
}
*/
/*
div.css-znku1x{
position: relative;
top: -50px;
}
@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: #5CA4EA;
overflow: hidden;
font-family: 'Lato', sans-serif;
}
.container {
width: 400px;
height: 400px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
align-items: center;
}
.center {
width: 180px;
height: 60px;
position: absolute;
}
.btn {
width: 180px;
height: 60px;
cursor: pointer;
background: transparent;
border: 1px solid #b3e7b1;
outline: none;
transition: 1s ease-in-out;
}
svg {
position: absolute;
left: 0;
top: 0;
fill: none;
stroke: rgb(184, 244, 214);
stroke-dasharray: 150 480;
stroke-dashoffset: 150;
transition: 1s ease-in-out;
}
.btn:hover {
transition: 1s ease-in-out;
background: #4fda58;
}
.btn:hover svg {
stroke-dashoffset: -480;
}
/*change color of label on slider
div.StyledThumbValue{
font-family: "Source Code Pro", monospace;
font-size: 14px;
padding-bottom: 9.33333px;
color: #0061a7;
top: -22px;
position: absolute;
white-space: nowrap;
background-color: transparent;
line-height: 1.6;
font-weight: normal;
}
/*change color of all text in markdown below slider
div.css-fg4pbf{
color: #0061a7;
}
/*change color of radio button
div.st-e5 {
background-color: rgb(247 75 255);
*/