-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (38 loc) · 824 Bytes
/
style.css
File metadata and controls
41 lines (38 loc) · 824 Bytes
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
39
40
41
*{
margin:0;
padding:0;
}
body{
background-color: #1c2431;
}
section{
position: relative;
height: 100vh;
background-color: slategray;
}
#graph
{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
button
{
font-family: 'Spartan', sans-serif;
position: absolute;
top: 80%;
left: 50%;
transform: translate(-50%, -50%);
border: none;
padding: 20px 80px;
color:rgba(245, 245, 245, 0.541);
border-radius: 15px;
background-color: slategray;
box-shadow: -5px -4px 20px rgba(255, 255, 255, 0.171),
5px 4px 20px rgba(0, 0, 0, 0.137);
}
button:hover{
box-shadow: inset -5px -4px 20px rgba(255, 255, 255, 0.137),
inset 5px 4px 20px rgba(0, 0, 0, 0.137);
}