generated from Kodehode-Stavanger/drumkit-assignment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
44 lines (41 loc) · 771 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 100px;
display: flex;
justify-content: start;
align-items: center;
flex-direction: column;
height: 100vh;
background-image: url("Images/Drum1.jpg");
background-repeat: no-repeat;
background-size: cover;
}
h1 {
margin-bottom: 200px;
padding: 10px;
border: 1px solid black;
text-align: center;
border-radius: 10px;
background-color: rgb(197, 155, 105);
font-family: "Rock Salt", cursive;
}
.container {
display: flex;
}
.card {
margin: 10px;
border: 1px solid black;
text-align: center;
font-size: 30px;
border-radius: 10px;
background-color: rgb(197, 155, 105);
}
.card button {
width: 100px;
border-radius: 10px;
background-color: bisque;
}