-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (104 loc) · 2.76 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.hide{
/* Hides HTML elements */
visibility: hidden;
}
.correct{
/* Displays the correct answer */
visibility: visible;
color: green;
}
.incorrect{
/* Displays the incorrect answer */
visibility: visible;
color: red;
}
.disabled{
/* Disables the button */
pointer-events: none;
}
.mainContainer {
/* Main container for the quiz */
/* center the content in a column */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
/* set the font */
font-family: 'Permanent Marker', cursive;
/* set the font size larger */
font-size: 20px;
/* set the color of the text */
color: #ffffff;
/* set the background color to linear gradiant */
background: linear-gradient(180deg, rgb(204, 0, 0) 0%, rgb(0, 13, 255) 100%);
/* Round out the edges */
border-radius: 10px;
/* set the margin */
margin-left: 300px;
margin-right: 300px;
/* set the padding */
padding : 20px;
}
.controlButtonContainer > button{
/* Control buttons */
font-family: 'Permanent Marker', cursive;
/* set the font size larger */
font-size: 20px;
/* set the background color to linear gradiant */
background: white;
/* Round out the edges */
border-radius: 10px;
}
.controlButtonContainer > button:hover{
/* Change cursor to pointer when hovering a button*/
cursor: pointer;
/* Change colors */
color: rgb(246, 255, 0);
/* Change the background color of button to rgb(56, 129, 247) */
background-color: rgb(255, 0, 251);
}
/* Change the answer buttons */
.answerButtons > button {
/* set the font */
font-family: 'Permanent Marker', cursive;
/* set the font size larger */
font-size: 20px;
/* set the background color to linear gradiant */
background: white;
/* Round out the edges */
border-radius: 10px;
}
/* Change cursor to pointer when hovering a button*/
.answerButtons > button:hover {
cursor: pointer;
/* Change colors */
color: rgb(246, 255, 0);
/* Change the background color of button to rgb(56, 129, 247) */
background-color: rgb(255, 0, 251);
}
.imageContainer > img {
/* Create a border around the images */
/* Create a luigi border */
border: 5px solid rgb(255, 255, 255);
/* Round out the edges */
border-radius: 10px;
}
.creditContainer > footer{
/* bottom center of window */
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(49, 39, 39);
color: rgb(181, 45, 45);
text-align: center;
}
.creditContainer > footer > p > a {
color: rgb(255, 255, 255);
text-decoration: none;
}
.creditContainer > footer > p > a:hover {
color: rgb(59, 162, 251);
text-decoration: underline;
}