-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
175 lines (151 loc) · 2.9 KB
/
Copy pathstyle.css
File metadata and controls
175 lines (151 loc) · 2.9 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* Body */
body {
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
margin-top:2em;
margin-bottom:2em;
margin-left: 4em;
margin-right: 4em;
background: #faf8fc;
text-align:center;
background: linear-gradient(141deg, #e094e6 4%, #e2c3e4 9%, #faf8fc 20%, #faf8fc 40.5%, #faf8fc 59%, #faf8fc 83%, #9de2cb 98%, #6ee7c3 100%);
}
/* Style Text */
h1 {
font-style: italic;
color: #59c999;
text-shadow: 2px 2px #408c6b;
}
h2 {
margin-top: 1em;
}
h4 {
color: #50d5d7;
margin-top: 1em;
}
h5 {
color: #d47e59;
}
/* Style Ids*/
#result {
margin-left:7em;
margin-right:7em;
}
#restart {
color:white;
margin-top:1em;
margin-bottom:4em;
padding:8px;
background-color:#cce3f5;
cursor: pointer;
width:150px;
border-radius: 15px;
height:35px;
display:block;
margin-left: auto;
margin-right: auto;
box-shadow: 0 9px #999;
transition-duration: 0.2s;
}
#all {
color:white;
margin-top:1em;
margin-bottom:2em;
padding:8px;
background-color:#ccf5d4;
cursor: pointer;
width:150px;
border-radius: 15px;
height:35px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 9px #999;
transition-duration: 0.2s;
}
.allDisplay{
display:none;
}
/* Style Flex */
.flexContainer {
display: flex;
align-items: center;
justify-content: center;
}
.answer-choice {
margin: 9px;
}
/* Style Images */
.answer-choice img {
height: 14.3em;
}
/* Style Buttons */
button {
margin:0;
padding:0;
border-width:0;
background-color:transparent;
transition-duration: 0.35s;
}
button:hover {
padding:9px;
background: linear-gradient(#dffeef 15%, #d6f4fe 25%, #d6f4fe 85%, #f1d8fd 90%);
cursor: pointer;
border-radius: 2px;
}
.selected{
padding:9px;
background: linear-gradient(#c2b5f2 15%, #dad7e5 25%, #dad7e5 85%, #c2b5f2 90%);
cursor: not-allowed;
}
.unselected{
margin:0;
padding:0;
border-width:0;
min-width:100%;
background-color:transparent;
}
.submit{
color:white;
margin-top:1em;
margin-bottom:4em;
padding:8px;
background-color:#d5ccf5;
cursor: pointer;
width:180px;
border-radius: 12px;
height:45px;
display:block;
margin-left: auto;
margin-right: auto;
box-shadow: 0 9px #999;
transition-duration: 0.2s;
}
.submit:active {
background-color: #d5ccf5;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.disabled{
opacity: 0.75;
padding:9px;
background: linear-gradient(#b5f1f2 15%, #504e55 25%, #504e55 85%, #b5f1f2 90%);
cursor: not-allowed;
}
/* Media/devices */
@media screen and (max-width: 780px) {
body {
background: linear-gradient(141deg, #e094e6 4%, #e2c3e4 9%, #faf8fc 20%, #faf8fc 40.5%, #faf8fc 59%, #faf8fc 89%, #9de2cb 100%);
margin-left:3.5em;
margin-right:3.5em;
}
header {
margin-left:.5em;
margin-right:.5em;
}
.flexContainer {
flex-wrap: wrap;
width: 100%;
}
#result {
margin-left:1.7em;
margin-right:1.7em;
}