-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (82 loc) · 1.38 KB
/
style.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body,
html {
margin: 0;
padding: 0;
height: 100%;
font-family: -apple-system,BlinkMacSystemFont,Seogoe UI,Roboto,Lato,Helvetica Neue,Helvetica,Arial,sans-serif;
}
body {
background: #c8ccd1;
transition: all 2s ease;
}
.header {
padding: 0 5rem;
color: #fff;
font-size: 0.8rem;
background-color: #c8ccd1;
height: 65px;
margin: 0;
margin-top: 63px;
}
.header-heading {
float: left;
}
.header-poweredby {
float: right;
margin-top: 25px;
}
.header-poweredby a {
color: #17215F;
}
.legend {
position:fixed;
bottom: 0;
width: 100%;
height: 40px;;
background-image:
linear-gradient(
to right,
#1e276b,
#1e276b,
#323a80,
#495193,
#6e76af,
#c8ccd1,
#89415e,
#a55e7b,
#d0809d,
#e09bb4,
#eebacd
);
}
.legend-score {
transition: left 1s ease;
background: #fff;
display: inline-block;
margin-top: 5px;
height: 30px;
width: 30px;
border-radius: 30px;
text-align: center;
font-family: 'Ultra', serif;
color: #777;
line-height: 30px;
position: absolute;
left: 50%;
}
.inputArea {
border: 0;
display: block;
box-sizing: border-box;
width: 100%;
padding: 5rem;
height: 70%;
font-family: 'Playfair Display', serif;
font-family: 'Ultra', serif;
font-size: 2rem;
background-color: transparent;
color: white;
}
.inputArea:focus {
outline: none;
}