Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,31 @@
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
4 |
}
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
margin-top: 0;
|
9 |
}
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
}
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
}
|
25 |
|
26 |
-
|
27 |
-
|
28 |
}
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
+
font-family: 'Arial', sans-serif;
|
3 |
+
margin: 20px;
|
4 |
}
|
5 |
|
6 |
+
#randomPickerForm {
|
7 |
+
margin-bottom: 20px;
|
|
|
8 |
}
|
9 |
|
10 |
+
input[type="text"] {
|
11 |
+
display: block;
|
12 |
+
margin: 10px 0;
|
13 |
+
padding: 10px;
|
14 |
+
width: 100%;
|
15 |
}
|
16 |
|
17 |
+
button {
|
18 |
+
padding: 10px 20px;
|
19 |
+
background-color: #4CAF50;
|
20 |
+
color: white;
|
21 |
+
border: none;
|
22 |
+
cursor: pointer;
|
23 |
}
|
24 |
|
25 |
+
button:hover {
|
26 |
+
background-color: #45a049;
|
27 |
}
|
28 |
+
|
29 |
+
#results {
|
30 |
+
margin-top: 20px;
|
31 |
+
}
|