Woziii commited on
Commit
2d7576a
·
verified ·
1 Parent(s): 2ed94a2

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +25 -0
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
+ }