-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (56 loc) · 1022 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
62
63
64
65
66
body {
text-align: center;
font-family: Arial, sans-serif;
margin: 0;
}
.btn {
height: 100px;
width: 100px;
border-radius: 20%;
border: 5px solid black;
display: inline-block;
line-height: 100px;
font-size: 1.5rem;
margin: 1rem;
cursor: pointer;
}
.btn-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
justify-items: center;
max-width: 400px;
margin: 0 auto;
}
.yellow {
background-color: #f99b45;
}
.red {
background-color: #d95980;
}
.purple {
background-color: #819ff9;
}
.green {
background-color: #63aac0;
}
.flash {
background-color: white;
}
.userflash {
background-color: green;
}
@media (min-width: 600px) {
.btn {
height: 150px;
width: 150px;
line-height: 150px;
}
}
@media (min-width: 768px) {
.btn {
height: 200px;
width: 200px;
line-height: 200px;
}
}