-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelpme.css
More file actions
39 lines (33 loc) · 719 Bytes
/
helpme.css
File metadata and controls
39 lines (33 loc) · 719 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
body{
color:black;
}
.choice-container {
display: flex;
margin-bottom: 0.5rem;
width: 20%;
border-radius: 1px;
background: #eddcd9;
font-size: 1rem;
min-width: 30rem;
-ms-flex-align: baseline;
}
.choice-container:hover {
cursor: pointer;
box-shadow: 0 0.4rem 1.4rem 0 rgba(239, 227, 233, 0.5);
transform: scale(1.02);
transform: transform 100ms;
}
.choice-prefix{
padding: 2rem 2.5rem;
color: white;
}
.choice-text {
padding: 2rem;
width: 100%;
}
.correct {
background: linear-gradient(32 deg, rgba(11, 223, 36) 0%, rgb(41, 232, 111) 100%)
}
.incorrect {
background: linear-gradient(32 deg, rgba(230, 29, 1) 0%, rgb(224, 11, 1) 100%)
}