-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
38 lines (30 loc) · 841 Bytes
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
body {
font-family: 'Nunito', sans-serif;
width: 100vw;
height: 100vh;
margin: 0;
}
#control-panel {
font-family: 'Nunito', sans-serif;
position: absolute;
background: rgb(28, 37, 66);
top: 0;
left: 0;
color: aliceblue;
margin: 12px;
padding: 20px;
z-index: 1;
border-radius: 35px 35px 35px 35px;
-moz-border-radius: 35px 35px 35px 35px;
-webkit-border-radius: 35px 35px 35px 35px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 43px -15px rgba(24,82,163,1);
-moz-box-shadow: 0px 0px 43px -15px rgba(24,82,163,1);
box-shadow: 0px 0px 43px -15px rgba(24,82,163,1);
}
label {
display: inline-block;
width: 140px;
font-family: 'Nunito', sans-serif;
}