-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (74 loc) · 1.68 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
body {
background: linear-gradient( to right, rgb(2, 30, 66), rgb(255, 255, 255), rgb(200, 16, 46) );
text-align: center;
}
.question:hover {
background-color: #f59997;
padding: 15px;
}
#question-image {
height: 300px;
width: 300px;
border: solid;
border-radius: 15px;
border-color: #2c5364;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
transition: transform .15s;
}
#question-image:hover{
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(.75);
background-color: #f59997;
padding: 15px;
}
.options{
background-color: rgb(255, 255, 255);
padding: 15px;
margin-left: auto;
margin-right: auto;
height: 150px;
width: 500px;
border: solid;
border-radius: 15px;
border-color: #2c5364;
}
.options>*{
background-color: rgb(255, 255, 255);
height: 30px;
width: 500px;
border-radius: 15px;
border:solid;
border-color: #ffffff;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
margin-bottom: 10px;
letter-spacing: 0.5px;
font-family: "Gill Sans", sans-serif;
color: #2c5364;
transition: all .1s;
float: left
}
.options>*:active{
transform: translate(0, 5px);
border-bottom: 1px solid;
}
.button-container>* {
background-color: #2c5364;
height: 25px;
width: 75px;
border-radius: 15px;
border-style: none;
margin-bottom: 10px;
letter-spacing: 0.5px;
font-family: "Gill Sans", sans-serif;
color: #ffffff;
}
.button-container:active{
transform: translate(0, 5px);
}
.link ol{
display:flex;
list-style-type: none;
padding-left: 0;
justify-content: center;
}