-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (48 loc) · 972 Bytes
/
styles.css
File metadata and controls
48 lines (48 loc) · 972 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
body {
background: linear-gradient(90deg, rgba(149,127,173,1) 0%, rgb(113, 160, 169) 50%, rgba(117,185,152,1) 100%);
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.title {
padding-top: 1%;
padding-bottom: 1%;
padding-left: 1%;
padding-right: 1%;
display: inline-block;
font-size: xx-large;
background-color: rgb(241, 239, 215);
border: 3px solid black;
border-radius: 25px;
}
button {
font-size: x-large;
border: 3px solid black;
}
.purple {
background-color: mediumpurple;
}
.purple:hover {
background-color: rgb(122, 87, 191);
}
.blue {
background-color: mediumturquoise;
}
.blue:hover {
background-color: rgb(47, 184, 179);
}
.green {
background-color: mediumspringgreen;
}
.green:hover {
background-color: rgb(0, 225, 129);
}
.selection {
position: absolute;
bottom: 2%;
left: 2%;
}
.reset {
position: absolute;
bottom: 2%;
right: 2%;
}