-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
54 lines (43 loc) · 689 Bytes
/
index.css
File metadata and controls
54 lines (43 loc) · 689 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
body {
width: 300px;
}
button {
width: 130px;
height: 5pc;
font-weight: 900;
color: #fff;
margin: 8px;
border: none;
border-radius: 10px;
text-transform: uppercase;
}
.blue {
background-color: rgb(0, 121, 191);
}
.yellow {
background-color: rgb(210, 144, 52);
}
.green {
background-color: rgb(81, 152, 57);
}
.red {
background-color: rgb(176, 70, 50);
}
.purple {
background-color: rgb(137, 96, 158);
}
.pink {
background-color: rgb(205, 90, 145);
}
.lightgreen {
background-color: rgb(75, 191, 107);
}
.lightblue {
background-color: rgb(0, 174, 204);
}
.grey {
background-color: rgb(131, 140, 145);
}
.reset {
background-color: #ebebeb;
}