-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (75 loc) · 1.44 KB
/
style.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.upper{
height: 5vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: space-between;
margin: 10px;
padding: 5px;
}
h2{
font-size: 2rem;
text-shadow: 0 8px 32px 0 lime;
backdrop-filter: blur( 5px );
-webkit-backdrop-filter: blur( 5px );
margin: 2%;
}
body{
height: 100vh;
width: auto;
font-family: cursive;
width: auto;
display: grid;
place-items: center;
align-items: center;
justify-content: center;
overflow: hidden;
color: lime;
background: black;
}
canvas{
margin-top: 30px;
background: rgba( 255, 255, 255, 0.1 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.45);
backdrop-filter: blur( 5px );
-webkit-backdrop-filter: blur( 5px );
border: 1px solid rgba( 255, 255, 255, 0.28 );
}
.controls{
height: 50vh;
width: 100vw;
display: flex;
margin: 10px;
padding: 5px;
align-items: flex-start;
justify-content: space-evenly;
}
.button{
height: 10vh;
width: 20vw;
margin: 10px;
padding: 10px;
background: lime;
display: grid;
place-content: center;
display: none;
}
i{
color: aliceblue;
font-size: 3.5rem;
}
.button:active{
margin-top: 3%;
}
@media only screen and (max-width: 780px) {
.button{
display: block;
display: grid;
place-content: center;
}
}