Spaces:
Running
on
Zero
Running
on
Zero
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
|
2 |
+
|
3 |
+
body {
|
4 |
+
font-family: 'Roboto', sans-serif;
|
5 |
+
}
|
6 |
+
|
7 |
+
#root > .block {
|
8 |
+
max-width: 1000px;
|
9 |
+
margin: 0 auto;
|
10 |
+
padding: 20px;
|
11 |
+
border-radius: 8px;
|
12 |
+
}
|
13 |
+
|
14 |
+
.gr-form, .gr-box, .gr-input, .gr-textarea, .gr-radio, .gr-checkbox, .gr-panel {
|
15 |
+
border-radius: 6px;
|
16 |
+
}
|
17 |
+
|
18 |
+
.gr-panel > .label {
|
19 |
+
border-top-left-radius: 6px;
|
20 |
+
border-top-right-radius: 6px;
|
21 |
+
}
|
22 |
+
|
23 |
+
button, .button-primary, .button-secondary {
|
24 |
+
border-radius: 6px;
|
25 |
+
}
|