-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (60 loc) · 1.04 KB
/
style.css
File metadata and controls
60 lines (60 loc) · 1.04 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
html {
height: 100%;
width: 100%;
}
body {
display: flex;
text-align: center;
align-items: center;
justify-content: center;
background-color: #e6e6e6;
font-family: 'Poppins', sans-serif;
padding: none;
margin: none;
}
h1 {
border-bottom: solid 2px grey;
}
.container {
width: 700px;
border: solid 50px white;
border-top: none;
border-radius: 50px;
background-color: white;
box-shadow: 0px 0px 10px #888888;
margin: none;
}
.fullscreen {
position: fixed;
margin: none;
padding: none;
background: white;
height: 100vh;
width: 100vw;
top: 0;
left: 0;
}
canvas {
display: block;
}
#closefullbutton {
position: fixed;
top: 0;
right: 0;
}
button {
font-size: 20px;
font-family: 'Poppins', sans-serif;
border: 5px solid #707070;
border-radius: 2px;
box-shadow: 0px 0px 5px #888888;
margin: 15px;
transition: box-shadow 200ms;
}
button:hover {
box-shadow: 0px 0px 5px #212121;
}
button:active {
box-shadow: none;
}