-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (49 loc) · 1017 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');
* {
padding: 0;
margin: 0;
}
body {
font-family: 'Bungee Spice', cursive;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #E3CEB9;
}
h1 {
margin-bottom: 2px;
margin-top: 10px;
font-size: xxx-large;
}
.container {
border: 10px solid indianred;
border-radius: 0.2rem;
display: flex;
flex-wrap: wrap;
width: 700px;
height: 700px;
}
.box {
box-sizing: border-box;
border: 0.5px solid grey;
border-radius: 0.2rem;
}
button {
border-radius: 10px;
font-weight: bold;
font-size: 35px;
color: #bb932c;
font-family: "Source Code Pro", Monaco, monospace;
border: 2px solid #bb932c;
padding: 10px;
margin-bottom: 10px;
background-color: lightgoldenrodyellow;
}
button:hover {
background-color: brown;
border: 2px solid yellow;
}
.hover {
background: aqua;
}