-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
121 lines (106 loc) · 2.08 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.parametric-if-container {
font-family: 'Graphik Web';
font-weight: 400;
line-height: 1.5;
min-height: 75vh;
padding-bottom: 4em;
}
.parametric-if-options {
transition: opacity 0.75s;
transition-delay: 0.5s;
font-weight: 500;
}
.parametric-if-heading {
font-family: 'Graphik Web';
color: #5DA391;
font-size: 18px;
display: inline;
margin-bottom: 1em;
font-weight: bold;
}
button {
background: #4801FF;
font-family: Silkscreen;
border: none;
box-shadow: none;
border-radius: 0px;
color: white;
font-size: 14px;
padding: 1em 2em;
cursor: pointer;
}
.parametric-if-option {
color: #D9CCFF;
cursor: pointer;
}
.parametric-if-option:hover {
text-decoration: underline;
}
@-webkit-keyframes parametric-value-increased {
0% {
color: #539987;
}
75% {
color: #539987;
}
100% {
color: #fff;
}
}
@-webkit-keyframes parametric-value-decreased {
0% {
color: #B33A3A;
}
75% {
color: #B33A3A;
}
100% {
color: #fff;
}
}
.parametric-scoreboard-value > .dynamic {
color: #ffffff;
margin-left: 1px;
}
.parametric-value-increased > .dynamic {
-webkit-animation-name: parametric-value-increased;
-webkit-animation-duration: 900ms;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in-out;
}
.parametric-value-decreased > .dynamic {
-webkit-animation-name: parametric-value-decreased;
-webkit-animation-duration: 900ms;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in-out;
}
.parametric-scoreboard {
width: 100%;
display: flex;
flex-direction: row;
font-family: 'Graphik Web';
font-size: 16px;
margin-bottom: 2em;
padding-top: 2em;
font-weight: bold;
}
.parametric-scoreboard-value {
/* width: 100%; */
/* border: solid 2px #c5c5c5; */
text-align: center;
padding-right: 2em;
color: #7E7E7E;
}
.start-button {
display: block;
text-align: left;
margin-left: 0;
}
@media all and (max-width: 1000px) {
.parametric-scoreboard {
font-size: 14px;
}
.parametric-scoreboard-value {
padding-right: 1em;
}
}