Spaces:
Running
Running
adjust paddings and button styles
Browse files
style.css
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
* {
|
2 |
box-sizing: border-box;
|
3 |
-
/* padding: 1rem; */
|
4 |
margin: 0;
|
5 |
font-family: "Fira Code VF", monospace;
|
6 |
line-height: 1.5;
|
@@ -11,34 +10,29 @@ html,
|
|
11 |
body {
|
12 |
margin: 0;
|
13 |
height: 100%;
|
14 |
-
/* padding: 0; */
|
15 |
}
|
16 |
|
17 |
body,
|
18 |
#container {
|
19 |
display: flex;
|
20 |
flex-direction: column;
|
21 |
-
/* justify-content: center; */
|
22 |
-
/* align-items: left; */
|
23 |
}
|
24 |
|
25 |
a {
|
26 |
color: #F1678E;
|
27 |
}
|
28 |
|
29 |
-
p {
|
30 |
-
/* padding: 1rem; */
|
31 |
-
/* float: left; */
|
32 |
-
}
|
33 |
-
|
34 |
h1,h2,h3,h4,h5 {
|
35 |
color: #F1678E;
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
38 |
}
|
39 |
|
40 |
-
|
41 |
-
|
42 |
}
|
43 |
|
44 |
#container {
|
@@ -99,25 +93,27 @@ canvas {
|
|
99 |
}
|
100 |
|
101 |
input {
|
102 |
-
margin: 1rem;
|
103 |
-
font-size:
|
104 |
}
|
105 |
|
106 |
button {
|
107 |
float: left;
|
108 |
font-size: 16px;
|
109 |
margin: 1rem;
|
110 |
-
padding: 1rem
|
111 |
cursor: pointer;
|
112 |
border-radius: 4px;
|
113 |
border: 0;
|
|
|
|
|
114 |
}
|
115 |
|
116 |
#buttonsDiv {
|
117 |
float: left;
|
118 |
}
|
119 |
|
120 |
-
button:hover {
|
121 |
background-color: #e3e3e3;
|
122 |
}
|
123 |
|
@@ -135,7 +131,7 @@ button.submit:hover {
|
|
135 |
|
136 |
button.submit:active {
|
137 |
background-color: #cb5677;
|
138 |
-
}
|
139 |
|
140 |
.module {
|
141 |
background-color: #ede2fe;
|
|
|
1 |
* {
|
2 |
box-sizing: border-box;
|
|
|
3 |
margin: 0;
|
4 |
font-family: "Fira Code VF", monospace;
|
5 |
line-height: 1.5;
|
|
|
10 |
body {
|
11 |
margin: 0;
|
12 |
height: 100%;
|
|
|
13 |
}
|
14 |
|
15 |
body,
|
16 |
#container {
|
17 |
display: flex;
|
18 |
flex-direction: column;
|
|
|
|
|
19 |
}
|
20 |
|
21 |
a {
|
22 |
color: #F1678E;
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
|
|
25 |
h1,h2,h3,h4,h5 {
|
26 |
color: #F1678E;
|
27 |
+
padding-bottom: 0.5rem 0rem;
|
28 |
+
}
|
29 |
+
|
30 |
+
h1 {
|
31 |
+
font-size: 1.8rem;
|
32 |
}
|
33 |
|
34 |
+
h3 {
|
35 |
+
font-size: 1.25rem;
|
36 |
}
|
37 |
|
38 |
#container {
|
|
|
93 |
}
|
94 |
|
95 |
input {
|
96 |
+
margin: 1rem 1rem 1rem 0rem;
|
97 |
+
font-size: 1rem;
|
98 |
}
|
99 |
|
100 |
button {
|
101 |
float: left;
|
102 |
font-size: 16px;
|
103 |
margin: 1rem;
|
104 |
+
padding: 1rem 0rem;
|
105 |
cursor: pointer;
|
106 |
border-radius: 4px;
|
107 |
border: 0;
|
108 |
+
color: white;
|
109 |
+
background-color: #F1678E;
|
110 |
}
|
111 |
|
112 |
#buttonsDiv {
|
113 |
float: left;
|
114 |
}
|
115 |
|
116 |
+
/* button:hover {
|
117 |
background-color: #e3e3e3;
|
118 |
}
|
119 |
|
|
|
131 |
|
132 |
button.submit:active {
|
133 |
background-color: #cb5677;
|
134 |
+
} */
|
135 |
|
136 |
.module {
|
137 |
background-color: #ede2fe;
|