-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
88 lines (68 loc) · 1.27 KB
/
main.css
File metadata and controls
88 lines (68 loc) · 1.27 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
body {
background-color: darkgray;
width: 100%;
background-image: url("./imgs/beach.png");
background-size: cover;
}
.container {
display: flex;
gap: 60px;
flex-wrap: wrap;
justify-content: center;
}
.square {
width: 300px;
height: 300px;
border: 1px solid gray;
display: flex;
align-items: center;
justify-content: center;
margin-right: 0%;
background-image: url("./imgs/question.png");
background-size: cover;
}
.choices {
display: block;
justify-content: flex-end;
align-items: center;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
}
.btn {
background-color: royalblue;
border: 1px solid #ffcc80;
border-radius: 5px;
padding: 8px;
width: 300px;
border-radius: 50px;
}
.btn:hover {
cursor: pointer;
box-shadow: 0 0.64px 22.4px 0 rgba(rgb(0, 242, 255), green, b, alpha, 0.5);
transform: scale(1.02);
transition: 100ms;
}
.question-wrapper {
font-size: 20px;
}
.question{
animation:cubic-bezier(0.075, 0.82, 0.165, 1);
}
h1 {
text-align: center;
animation: ease-in;
color: aquamarine;
font-size: 100px;
}
.startButton {
font-size: 30px;
}
.start-btn {
font-size: 30px;
background-color: blanchedalmond;
}
.reset-btn {
font-size:30px;
background-color: blanchedalmond ;
}