-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
44 lines (35 loc) · 778 Bytes
/
Copy pathStyle.css
File metadata and controls
44 lines (35 loc) · 778 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Roboto&family=Roboto+Condensed:wght@700&family=Roboto+Slab:wght@200&display=swap');
body{
text-align: center;
font-family: 'Poppins', sans-serif;
}
h1{
color: rgb(162, 58, 6);
font-size: 2.5rem;
}
.btn-container{
display: flex;
justify-content: center;
}
.btn{
height: 200px;
width: 200px;
border-radius: 20%;
border: 10px solid black;
margin: 1rem;
}
.red{
background-color:#d95980;
}
.yellow{
background-color: #f99b45;
}
.purple{
background-color: rgb(177, 21, 177);
}
.green{
background-color: #63aac0;
}
.flash{
background-color: whitesmoke;
}