-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (51 loc) · 907 Bytes
/
style.css
File metadata and controls
62 lines (51 loc) · 907 Bytes
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
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
margin-top: 20px;
}
.btn-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}
.row {
display: flex;
}
.btn {
height: 150px;
width: 150px;
border-radius: 20%;
border: 8px solid black;
margin: 1.5rem;
cursor: pointer;
transition: all 0.2s ease;
}
/* Colors */
.pink {
background-color: #ff6b81;
}
.green {
background-color: #2ed573;
}
.yellow {
background-color: #ffa502;
}
.purple {
background-color: #a55eea;
}
/* Hover Effect */
.btn:hover {
transform: scale(1.05);
opacity: 0.9;
}
/* Flash Effects */
.flash {
background-color: white !important;
}
.userflash {
background-color: lightgreen !important;
}