-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (75 loc) · 1.57 KB
/
styles.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
*{
margin:0;
padding:0;
font-family: 'Times New Roman', Times, serif;
box-sizing: border-box;
}
body{
background-color: cadetblue;
}
.app{
width: 90%;
max-width: 800px;
background-color: white;
margin:100px auto 0;
border: 1px solid #ccc;
border-radius:10px;
padding: 30px;
}
.app h1{
text-align: center;
font-weight:25px;
color:black;
padding-bottom: 30px;
font-weight: 600;
}
.question{
padding: 20px 0;
}
.question h2{
text-align:center;
font-size: 20px;
color:black;
font-weight:400;
}
.btn1{
background-color: #4c7faf;
color: #ffffff;
font-weight: 600;
width: 100%;
border: 2px solid transparent;
padding: 12px 0;
text-align: left;
margin: 12px 0;
cursor: pointer;
border-radius: 8px;
transition: all 0.5s ease;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.btn1:hover:not([disabled]) {
background-color: black;
border: 2px solid #ffffff;
box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
transform: translateY(-3px);
}
.btn1:disabled{
cursor:no-drop;
}
#next{
background-color: #4caf93;
color: #ffffff;
font-weight: 400;
border: 2px solid transparent;
width: 20%;
padding: 8px 0;
margin: 8px auto 0;
cursor: pointer;
border-radius: 20px;
display: block;
}
.correct{
background-color: Green;
}
.incorrect{
background-color: red;
}