-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
208 lines (182 loc) · 5.02 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
.highlight-btn {
width: 25px;
height: 25px;
border: 0.25px solid black;
border-radius: 50%;
cursor: pointer;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
margin: 2px; /* added to ensure there's space between buttons and they don't overlap due to border and shadow */
}
#summarizeBtn {
margin-left: 5px;
}
#summaryOutput {
width: 100%;
margin-top: 5px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #b6f0e9; /* Setting the button's color to B6F0E9 */
color: black;
border: 3px solid black; /* Thick black outline */
border-radius: 10px; /* Rounded edges */
transition: background-color 0.3s, transform 0.15s, border-color 0.3s;
cursor: pointer;
position: relative;
overflow: hidden;
}
.button span {
position: relative;
z-index: 1;
}
.button input[type="checkbox"] {
position: absolute;
opacity: 0;
z-index: 2;
cursor: pointer;
}
/* Pressed in effect when checked */
.button input[type="checkbox"]:checked + span {
transform: translateY(4px);
}
.button input[type="checkbox"]:checked {
background-color: #0056b3;
border-color: #004080;
}
.mainBody {
width: 261px;
font-family: "Space Grotesk", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
.logo {
vertical-align: middle; /* align the logo with the middle of the text */
}
/* Adjust the navbar height, if needed */
.navbar {
height: 60px;
width: 100%;
font-family: "Space Grotesk", sans-serif;
font-weight: 700; /* Adjust as necessary */
}
body .navbar {
background-color: #0097ff !important;
}
/* Centering labels for sliders */
div > label {
text-align: center;
display: block; /* Ensure the label takes up the full width of its parent div */
}
/* Pressed style for the button */
.button.pressed {
background-color: #0097ff; /* Change to the pressed color */
border-color: black; /* Change to the pressed border color */
transform: translateY(1px); /* Simulate a pressed effect */
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Add a bit of shadow */
}
.thicker-underline {
text-decoration: none;
border-bottom: 2px solid black; /* Adjust the pixel value to make it thicker or thinner */
display: inline; /* Ensures the style doesn't break inline texts */
}
.btn-lightblue {
background-color: lightblue;
color: #000;
}
.btn-lightblue:hover {
background-color: #0097ff;
color: #000;
}
.line-height-button {
height: 60px;
/* add other styles if needed */
}
.switch-input {
transform: scale(2); /* Adjust the scale factor as needed */
margin-top: 20px;
}
/* Style for the thumb handle */
/* Style for the slider track (thin black line) */
.form-range::-webkit-slider-runnable-track {
height: 2px; /* Adjust the height to make it thinner or thicker */
background-color: black; /* Black color for the track */
border: none;
}
/* Style for the slider thumb (horizontal oval shape) */
.form-range::-webkit-slider-thumb {
width: 30px; /* Width of the oval thumb */
height: 18px; /* Height of the oval thumb */
background-color: #b6f0e9; /* Background color of the thumb */
border: 2px solid black; /* Black border around the thumb */
border-radius: 50px; /* Makes the thumb oval-shaped */
transform: translateY(-3px); /* Adjust the translateY value to move the thumb up */
}
.slider-container {
width: 90%;
text-align: center;
margin-bottom: 20px; /* Add some vertical spacing between sliders */
}
.slider-container input[type="range"] {
width: 90%;
/* Add your custom styles for the slider thumb here */
}
/* Custom styling for the slider thumb */
.slider-container input[type="range"]::-webkit-slider-thumb {
width: 30px; /* Adjust the width as needed */
height: 18px; /* Adjust the height as needed */
border: 2px solid black;
border-radius: 50px;
background-color: #b6f0e9;
cursor: pointer;
transform: translateY(-3px); /* Adjust the translateY value to move the thumb up */
}
#colorPickerDialog .highlight-btn {
background-image: none !important;
border: none !important;
width: 20px;
height: 20px;
display: block;
}
/* Add this CSS to your existing style.css file */
.slider-container .d-flex span {
font-size: 10px; /* Adjust the font size as needed */
width: 90%; /* Set the width to 90% */
}
.footer {
background-color: #0097ff !important;
}
#login-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 999;
}
#login-popup > div {
position: fixed;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0px 15px;
}
#login-popup > div > span {
display: inline-block;
width: 100%;
text-align: center;
padding: 10px 0px;
border: 1px solid #0097ff;
}
.email {
font-size: 0.8rem;
margin: 10px 0px;
padding: 0px 10px;
width: 100%;
text-align: center;
text-wrap: nowrap;
text-overflow: ellipsis;
}