-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.13 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (69 loc) · 1.13 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
body{
text-align: center;
}
.btn-container{
display: flex;
justify-content: center;
}
.btn{
height: 200px;
width: 200px;
border: 10px black solid;
border-radius: 30px;
margin: 1rem;
}
.red{
background-color: #d95980;
}
.yellow{
background-color: #f99b45;
}
.green{
background-color: #63aac0;
}
.purple{
background-color: #819ff9;
}
.flash{
background-color: white;
}
.userFlash{
background-color: rgb(27, 216, 62);
}
/* button */
#startBtn {
margin: 20px 0;
padding: 10px 25px;
font-size: 18px;
font-weight: bold;
color: white;
background-color: #4CAF50;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
#startBtn:hover {
background-color: #45a049;
transform: scale(1.05);
}
#startBtn:active {
transform: scale(0.98);
}
/* Responsiveness for phone */
@media (max-width: 500px) {
.btn {
width: 140px;
height: 140px;
margin: 0.5rem;
border-width: 6px;
border-radius: 20px;
}
h1 {
font-size: 2rem;
}
h2,
h3 {
font-size: 1.2rem;
}
}