forked from ahmedprusevic/quiz-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (72 loc) · 1.27 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
body {
margin: 0;
padding: 0;
background-color: blanchedalmond;
}
#taimer-div {
width: 15%;
height: 15%;
border: none;
border-radius: 5px;
font-family: "Rye";
font-size: 16px;
margin-top: 450px;
margin-left: 30px;
}
.head-name {
font-family: "Rye";
font-size: 30px;
margin-left: 800px;
margin-bottom: 100px;
}
#root {
font-family: "Rye";
font-weight: 400;
font-size: 20px;
}
.btn {
width: 200px;
height: 35px;
margin-top: 20px;
margin-left: 200px;
font-family: "Rye";
border: none;
border-radius: 5px;
cursor: pointer;
}
.questionsText {
margin-left: 750px;
margin-bottom: 100px;
}
dialog {
width: 600px;
height: 200px;
background-color: rgb(179, 169, 157);
text-align: center;
border: none;
border-radius: 5px;
}
dialog::backdrop {
background: rgba(241, 213, 170, 0.534);
}
.yesBtn {
width: 150px;
height: 40px;
border: none;
border-radius: 5px;
background-color: blanchedalmond;
font-family: "Rye";
margin-top: 30px;
cursor: pointer;
}
.noBtn {
width: 150px;
height: 40px;
margin-left: 30px;
border: none;
border-radius: 5px;
background-color: blanchedalmond;
font-family: "Rye";
margin-top: 30px;
cursor: pointer;
}