-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
77 lines (66 loc) · 1.69 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
* {
margin: 0;
padding: 0;
}
.bg-container {
background-image: linear-gradient(to right top, #ffffff, #f8f8fe, #eef1fe, #e3ebfe, #d6e6fd);
height: 100vh;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.card {
background-color: #ffffff;
min-height: 300px;
width: 400px;
box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
border-radius: 4px;
overflow: hidden;
}
.cardsecond {
background-color: #ffffff;
min-height: 80px;
width: 400px;
box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
border-radius: 4px;
overflow: hidden;
}
.question {
font-family: "Roboto";
padding-top: 30px;
text-align: center;
font-size: 16px;
line-height: 24px;
letter-spacing: 1px;
}
.un-ordered {
margin-left: 25px;
margin-top: 30px;
}
.list-style {
list-style: none;
font-size: 18px;
font-family: "Roboto";
padding-bottom: 16px;
}
.list-style label {
cursor: pointer;
margin-left: 4px;
}
.button {
width: 100%;
padding: 13px;
background-color: #176B87;
color: #ffffff;
font-size: 15px;
border: none;
cursor: pointer;
}
.button:hover {
background-color: #053B50;
}
.button:focus {
background-color: #64CCC5;
}