Spaces:
Running
Running
Upload styles.css
Browse files- css/styles.css +265 -0
css/styles.css
ADDED
@@ -0,0 +1,265 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html {
|
2 |
+
height: 100%;
|
3 |
+
}
|
4 |
+
|
5 |
+
body {
|
6 |
+
height: 100%;
|
7 |
+
margin: 0px;
|
8 |
+
}
|
9 |
+
|
10 |
+
.center .description .clock {
|
11 |
+
color: #000000;
|
12 |
+
font-size: 20px;
|
13 |
+
padding-top: 5px;
|
14 |
+
padding-bottom: 5px;
|
15 |
+
}
|
16 |
+
.center {
|
17 |
+
font-family: 'Montserrat', sans-serif;
|
18 |
+
text-align: center;
|
19 |
+
margin: 0px;
|
20 |
+
width: 100%;
|
21 |
+
color: #222;
|
22 |
+
z-index: 1;
|
23 |
+
padding-top: 150px;
|
24 |
+
}
|
25 |
+
|
26 |
+
.center h1 {
|
27 |
+
font-size: 4rem;
|
28 |
+
}
|
29 |
+
|
30 |
+
.center .description {
|
31 |
+
font-family: monospace;
|
32 |
+
line-height: 22px;
|
33 |
+
font-size: 18px;
|
34 |
+
width: 370px;
|
35 |
+
margin: auto;
|
36 |
+
margin-top: 10px;
|
37 |
+
margin-bottom: 25px;
|
38 |
+
}
|
39 |
+
|
40 |
+
.center .description a {
|
41 |
+
text-decoration: none;
|
42 |
+
color: #111;
|
43 |
+
text-style: bold;
|
44 |
+
}
|
45 |
+
|
46 |
+
.select {
|
47 |
+
display: inline-block;
|
48 |
+
margin-right: 10px;
|
49 |
+
position: relative;
|
50 |
+
}
|
51 |
+
|
52 |
+
select {
|
53 |
+
transition: background-color 200ms ease;
|
54 |
+
font-size: 14px;
|
55 |
+
padding: 10px;
|
56 |
+
-webkit-appearance: none;
|
57 |
+
-moz-appearance: none;
|
58 |
+
appearance: none;
|
59 |
+
box-sizing: border-box;
|
60 |
+
border-radius: 3px;
|
61 |
+
font-family: monospace;
|
62 |
+
padding-right: 30px;
|
63 |
+
position: relative;
|
64 |
+
outline: 0px;
|
65 |
+
background: #fff;
|
66 |
+
cursor: pointer;
|
67 |
+
}
|
68 |
+
|
69 |
+
.select:after {
|
70 |
+
content: "▼";
|
71 |
+
padding: 14px 8px;
|
72 |
+
position: absolute;
|
73 |
+
right: 13px;
|
74 |
+
top: 0;
|
75 |
+
z-index: 1;
|
76 |
+
text-align: center;
|
77 |
+
width: 10%;
|
78 |
+
height: 100%;
|
79 |
+
pointer-events: none;
|
80 |
+
box-sizing: border-box;
|
81 |
+
font-size: 9px;
|
82 |
+
}
|
83 |
+
|
84 |
+
button {
|
85 |
+
transition: background-color 200ms ease;
|
86 |
+
font-size: 14px;
|
87 |
+
padding: 10px 12px;
|
88 |
+
-webkit-appearance: none;
|
89 |
+
-moz-appearance: none;
|
90 |
+
appearance: none;
|
91 |
+
box-sizing: border-box;
|
92 |
+
border-radius: 3px;
|
93 |
+
border: 1px solid #aaa;
|
94 |
+
background: #fff;
|
95 |
+
font-family: monospace;
|
96 |
+
cursor: pointer;
|
97 |
+
outline: 0px;
|
98 |
+
}
|
99 |
+
|
100 |
+
button:hover,
|
101 |
+
select:hover {
|
102 |
+
background-color: #eee;
|
103 |
+
}
|
104 |
+
|
105 |
+
.center .links {
|
106 |
+
padding-top: 10px;
|
107 |
+
font-family: monospace;
|
108 |
+
letter-spacing: 0.3px;
|
109 |
+
font-size: 14px;
|
110 |
+
}
|
111 |
+
|
112 |
+
.center .links a {
|
113 |
+
text-decoration: none;
|
114 |
+
margin-left: 0px;
|
115 |
+
margin-right: 100px;
|
116 |
+
color: #111;
|
117 |
+
}
|
118 |
+
|
119 |
+
.center .links a:hover {
|
120 |
+
text-decoration: underline;
|
121 |
+
}
|
122 |
+
|
123 |
+
.center .grid {
|
124 |
+
display: grid;
|
125 |
+
column-gap: 50px;
|
126 |
+
}
|
127 |
+
.center .grid hr {
|
128 |
+
border-top: 1px dashed gray;
|
129 |
+
}
|
130 |
+
.center .grid-item {
|
131 |
+
font-family: monospace;
|
132 |
+
letter-spacing: 0.3px;
|
133 |
+
font-size: 14px;
|
134 |
+
padding-bottom: 20px;
|
135 |
+
}
|
136 |
+
.center .grid-item a {
|
137 |
+
float: left;
|
138 |
+
text-decoration: none;
|
139 |
+
margin-left: 10px;
|
140 |
+
margin-right: 10px;
|
141 |
+
color: #111;
|
142 |
+
}
|
143 |
+
|
144 |
+
footer{
|
145 |
+
color: #000;
|
146 |
+
text-align: center;
|
147 |
+
padding-bottom: 10px;
|
148 |
+
}
|
149 |
+
|
150 |
+
iframe {
|
151 |
+
margin-left: 14px;
|
152 |
+
margin-bottom: -5px;
|
153 |
+
}
|
154 |
+
|
155 |
+
@media (max-width: 900px) {
|
156 |
+
.center h1 {
|
157 |
+
font-size: 50px;
|
158 |
+
}
|
159 |
+
.center .links a,
|
160 |
+
.center .links iframe {
|
161 |
+
display: block;
|
162 |
+
margin: auto;
|
163 |
+
margin-bottom: 12px;
|
164 |
+
}
|
165 |
+
.divider {
|
166 |
+
display: none;
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
+
@media (max-width: 400px) {
|
171 |
+
.center h1 {
|
172 |
+
font-size: 26px;
|
173 |
+
}
|
174 |
+
.center .description {
|
175 |
+
font-size: 14px;
|
176 |
+
width: 100%;
|
177 |
+
padding-left: 40px;
|
178 |
+
padding-right: 40px;
|
179 |
+
box-sizing: border-box;
|
180 |
+
}
|
181 |
+
}
|
182 |
+
table {
|
183 |
+
width: 100%;
|
184 |
+
border-collapse: collapse;
|
185 |
+
}
|
186 |
+
|
187 |
+
th, td {
|
188 |
+
padding: 8px;
|
189 |
+
text-align: left;
|
190 |
+
border-bottom: 1px solid #ddd;
|
191 |
+
}
|
192 |
+
|
193 |
+
th {
|
194 |
+
background-color: #f2f2f2;
|
195 |
+
}
|
196 |
+
|
197 |
+
a {
|
198 |
+
color: blue;
|
199 |
+
text-decoration: none;
|
200 |
+
}
|
201 |
+
|
202 |
+
a:hover {
|
203 |
+
text-decoration: underline;
|
204 |
+
}
|
205 |
+
.user-chat:empty {
|
206 |
+
background-color: transparent;
|
207 |
+
pointer-events: none;
|
208 |
+
}
|
209 |
+
.chat-container {
|
210 |
+
background-color: var(--primary);
|
211 |
+
color: #000;
|
212 |
+
padding: 10px;
|
213 |
+
border-radius: 5px;
|
214 |
+
height: 300px;
|
215 |
+
overflow-y: scroll;
|
216 |
+
}
|
217 |
+
|
218 |
+
.user-chat {
|
219 |
+
background-color: #dcf8c6;
|
220 |
+
color: #000;
|
221 |
+
padding: 5px;
|
222 |
+
margin-bottom: 10px;
|
223 |
+
border-radius: 5px;
|
224 |
+
}
|
225 |
+
.bot-chat {
|
226 |
+
background-color: #ffffff;
|
227 |
+
color: #000;
|
228 |
+
padding: 5px;
|
229 |
+
margin-bottom: 10px;
|
230 |
+
border-radius: 5px;
|
231 |
+
}
|
232 |
+
|
233 |
+
.live-chat-input {
|
234 |
+
display: flex;
|
235 |
+
align-items: center;
|
236 |
+
justify-content: space-between;
|
237 |
+
background-color: #f5f5f5;
|
238 |
+
border: 1px solid #ddd;
|
239 |
+
border-radius: 20px;
|
240 |
+
padding: 10px;
|
241 |
+
}
|
242 |
+
|
243 |
+
#inputText {
|
244 |
+
flex: 1;
|
245 |
+
border: none;
|
246 |
+
outline: none;
|
247 |
+
margin-right: 10px;
|
248 |
+
font-size: 16px;
|
249 |
+
}
|
250 |
+
|
251 |
+
#submitBtn {
|
252 |
+
background-color: #4CAF50;
|
253 |
+
color: #fff;
|
254 |
+
border: none;
|
255 |
+
outline: none;
|
256 |
+
padding: 8px 20px;
|
257 |
+
border-radius: 20px;
|
258 |
+
cursor: pointer;
|
259 |
+
font-size: 16px;
|
260 |
+
}
|
261 |
+
|
262 |
+
#submitBtn:hover {
|
263 |
+
background-color: #45a049;
|
264 |
+
}
|
265 |
+
}
|