-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (74 loc) · 1.38 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
*{
margin: 0;
padding: 0;
}
body{
display:flex;
height:100vh;
justify-content:center;
align-items:center;
background-color: rgb(138, 106, 106);
flex-direction: column;
}
#ques{
font-size: 40px;
padding-bottom: 30px;
text-align: center;
}
.options{
display:grid ;
font-size: xx-large;
grid-template-columns: repeat(3,150px);
background-color: #fff;
border-radius: 10px;
height:300px;
gap:10px;
padding:20px 20px;
padding-bottom: 30px;
box-shadow:
5px 5px 12px rgb(0,0,0,.16);
}
.option{
border:none;
border-radius: 10px;
}
.playAgain{
display:flex;
justify-content: center;
}
#try{
visibility:hidden;
bottom: 94px;
font-size: 1.5em;
padding: 10px;
border-radius: 8px;
margin: 10px;
background-color: rgb(94, 58, 58);
box-shadow:
5px 5px 12px rgb(0,0,0,.16);
}
.levels{
display: flex;
gap:30px;
}
.lev{
font-size: 30px;
padding: 10px;
border-radius:10%;
background-color: rgb(94, 58, 58);
box-shadow:
5px 5px 12px rgb(0,0,0,.16);
}
.intro{
text-align: center;
max-width: 400px;
font-size: 1.3em;
padding: 30px;
}
@media screen and (max-width: 500px) {
.options {
justify-content: center;
background-color: rgb(138, 106, 106);
box-shadow: none;
}
}