-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (45 loc) · 877 Bytes
/
styles.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
html {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
:root {
font-family: 'Press Start 2P', cursive;
}
body, h1, canvas, p {
margin: 0;
padding: 0;
text-align: center;
}
h1, h4 {
margin: 10px;
color: wheat;
}
body {
background-color: #121212;
}
#canvas {
border-radius: 40px;
margin-top: 20px;
}
.red-button {
width: 200px;
height: 100px;
background-color: #FF0000;
border-radius: 80px;
border: none;
outline: none;
box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.5), inset 5px 5px 15px rgb(0, 0, 0);
font-family: Helvetica;
font-size: 40px;
color: white;
font-family: 'Press Start 2P', cursive;
margin: 30px 0;
}
.red-button:hover {
cursor: pointer;
}
.red-button:active {
background-color: darkred;
}