Spaces:
Running
Running
sarahciston
commited on
Commit
•
94f37d8
1
Parent(s):
3455917
Update style.css
Browse files
style.css
CHANGED
@@ -1,25 +1,43 @@
|
|
1 |
* {
|
2 |
box-sizing: border-box;
|
3 |
-
padding:
|
4 |
margin: 0;
|
5 |
-
font-family:
|
|
|
6 |
}
|
7 |
|
8 |
html,
|
9 |
body {
|
|
|
10 |
height: 100%;
|
11 |
-
|
12 |
-
|
13 |
-
body {
|
14 |
-
padding: 32px;
|
15 |
}
|
16 |
|
17 |
body,
|
18 |
#container {
|
19 |
display: flex;
|
20 |
flex-direction: column;
|
21 |
-
justify-content: center;
|
22 |
-
align-items:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
#container {
|
@@ -51,6 +69,10 @@ svg {
|
|
51 |
pointer-events: none;
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
54 |
#example {
|
55 |
font-size: 14px;
|
56 |
text-decoration: underline;
|
@@ -73,4 +95,43 @@ svg {
|
|
73 |
font-size: 12px;
|
74 |
margin: -16px 0 0 -2px;
|
75 |
padding: 1px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
}
|
|
|
1 |
* {
|
2 |
box-sizing: border-box;
|
3 |
+
padding: 1rem;
|
4 |
margin: 0;
|
5 |
+
font-family: "Fira Code VF", monospace;
|
6 |
+
line-height: 1.5;
|
7 |
}
|
8 |
|
9 |
html,
|
10 |
body {
|
11 |
+
margin: 0;
|
12 |
height: 100%;
|
13 |
+
padding: 0;
|
|
|
|
|
|
|
14 |
}
|
15 |
|
16 |
body,
|
17 |
#container {
|
18 |
display: flex;
|
19 |
flex-direction: column;
|
20 |
+
/* justify-content: center; */
|
21 |
+
/* align-items: left; */
|
22 |
+
}
|
23 |
+
|
24 |
+
a {
|
25 |
+
color: #F1678E;
|
26 |
+
}
|
27 |
+
|
28 |
+
p {
|
29 |
+
padding: 1rem;
|
30 |
+
float: left;
|
31 |
+
}
|
32 |
+
|
33 |
+
h1,h2,h3,h4,h5 {
|
34 |
+
color: #F1678E;
|
35 |
+
padding: 1rem;
|
36 |
+
float: left;
|
37 |
+
}
|
38 |
+
|
39 |
+
div {
|
40 |
+
padding: 0;
|
41 |
}
|
42 |
|
43 |
#container {
|
|
|
69 |
pointer-events: none;
|
70 |
}
|
71 |
|
72 |
+
canvas {
|
73 |
+
display: block;
|
74 |
+
}
|
75 |
+
|
76 |
#example {
|
77 |
font-size: 14px;
|
78 |
text-decoration: underline;
|
|
|
95 |
font-size: 12px;
|
96 |
margin: -16px 0 0 -2px;
|
97 |
padding: 1px;
|
98 |
+
}
|
99 |
+
|
100 |
+
input {
|
101 |
+
margin: 1rem;
|
102 |
+
font-size: 12pt;
|
103 |
+
}
|
104 |
+
|
105 |
+
button {
|
106 |
+
float: left;
|
107 |
+
font-size: 16px;
|
108 |
+
margin: 1rem;
|
109 |
+
padding: 1rem 2rem;
|
110 |
+
cursor: pointer;
|
111 |
+
border-radius: 4px;
|
112 |
+
border: 0;
|
113 |
+
}
|
114 |
+
|
115 |
+
#buttonsDiv {
|
116 |
+
float: left;
|
117 |
+
}
|
118 |
+
|
119 |
+
button:hover {
|
120 |
+
background-color: #e3e3e3;
|
121 |
+
}
|
122 |
+
|
123 |
+
button:active {
|
124 |
+
background-color: #d7d7d7;
|
125 |
+
}
|
126 |
+
|
127 |
+
button.submit {
|
128 |
+
background-color: #F1678E;
|
129 |
+
}
|
130 |
+
|
131 |
+
button.submit:hover {
|
132 |
+
background-color: #df5f83;
|
133 |
+
}
|
134 |
+
|
135 |
+
button.submit:active {
|
136 |
+
background-color: #cb5677;
|
137 |
}
|