-
Notifications
You must be signed in to change notification settings - Fork 26
/
styles.css
67 lines (60 loc) · 1.16 KB
/
styles.css
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
body {
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
;
height: 100vh;
overflow: hidden;
}
.box {
height: 150px;
width: 150px;
background: linear-gradient(30deg, #2c3e50, #34495e);
border-radius: 12px;
box-shadow: 0px 10px 40px rgba(255, 255, 200,.3);
text-align: center;
vertical-align: middle;
line-height: 150px;
font-size: 24px;
}
.animatebox {
height: 100vh;
width: 100%;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.picker {
background-color: white;
height: 32.5px;
border: solid 1px black;
color: black;
}
.subButton {
background-color: white;
border: solid 1px black;;
border-radius: 4px;
margin: 5px;
padding: 5px;
color: black;
}
h1 {
font-size: 450%;
color: white;
}
a .btn {
position: absolute;
bottom: 10%;
left: 50%;
right: 50%;
}
.footer {
position: absolute;
left: 0;
bottom: 10px;
color: white;
text-align: center;
width: 100%;
}