-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
99 lines (90 loc) · 2.64 KB
/
Copy pathgame.css
File metadata and controls
99 lines (90 loc) · 2.64 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
body {
width: 930px;
text-align: center;
color: aliceblue;
font-family: 'Courier New', Courier, monospace;
}
.background {
background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/a7018daf-b329-4d31-8fe3-42efa896a2e7/deae6j7-f1bd0097-d153-4f30-8735-5f8d4ad42de6.jpg/v1/fill/w_1192,h_670,q_70,strp/_i_tried__jeopardy__2011_2012__template_background_by_jamelovesfonts11_deae6j7-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzIwIiwicGF0aCI6IlwvZlwvYTcwMThkYWYtYjMyOS00ZDMxLThmZTMtNDJlZmE4OTZhMmU3XC9kZWFlNmo3LWYxYmQwMDk3LWQxNTMtNGYzMC04NzM1LTVmOGQ0YWQ0MmRlNi5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.Yegd0YWYjKmqtd22vq4APoa9-qw3V_2S0VJu0K-HhKk");
height: 700px;
}
.questionNumber {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
margin: 10px 340px 0 340px;
border: 5px solid black;
border-radius: 10px;
background: linear-gradient(black, blue);
position: relative;
left: -125px;
bottom: -115px;
}
.score {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
margin: 10px 340px 0 340px;
border: 5px solid black;
border-radius: 10px;
background: linear-gradient(black, blue);
position: relative;
right: -125px;
bottom: -45px;
}
.title {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
margin: 0 350px 50px 350px;
border: 5px solid black;
border-radius: 10px;
background: linear-gradient(black, blue);
position: relative;
top: -100px;
}
.question {
font-size: 2em;
display: flex;
justify-content: center;
align-items: center;
height: 200px;
margin: 10px 300px 0 300px;
border: 5px solid black;
border-radius: 10px;
background: linear-gradient(black, blue, black);
}
.choices {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
margin-top: 100px;
}
#choice-1,
#choice-2,
#choice-3,
#choice-4 {
font-size: 1.2em;
display: flex;
justify-content: center;
height: 100px;
margin: 0;
align-items: center;
border: 5px solid black;
background: linear-gradient(blue, black);
}
h3 {
font-size: 2em;
position: relative;
top: -200px;
display: flex;
justify-content: center;
align-items: center;
height: 50px;
margin: 0 350px 0 350px;
border: 5px solid black;
border-radius: 10px;
background: linear-gradient(black, blue);
}