-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
54 lines (48 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
body {
background-image: url("./src/drumset-on-fire.png");
background-size: cover;
color: rgba(255, 255, 255, 0.9);
font-family: 'monserrat', sans-serif;
font-weight: boldst;
text-align: center;
}
.container {
border: 1px solid rgb(255, 255, 255, 0.2);
padding-top: 50px;
padding-bottom: 100px;
padding-left: 100px;
padding-right: 100px;
background: rgba(19, 19, 19, 0.3);
max-width: auto;
margin: auto;
border-radius: 12px;
}
h1 {
margin-top: 30px;
margin-bottom: 18px;
}
h2 {
font-size: 100px;
margin-top: 0;
margin-bottom: 18px;
}
button {
border: none;
padding-top: 12px;
padding-bottom: 12px;
color: rgb(0, 0, 0);
font-weight: bold;
width: 180px;
margin-bottom: 18px;
border-radius: 2px;
}
#increment-btn {
border: .05px solid rgb(202, 202, 202);
background: linear-gradient(to right, rgb(197, 196, 158), rgb(231, 192, 17), rgb(255, 60, 0));
margin-right: 10px;
}
#save-btn {
color: rgb(202, 202, 202, 0.9);
border: .05px solid rgb(202, 202, 202);
background: rgb(0, 0, 0, 0.7);
}