-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (67 loc) · 1.34 KB
/
style.css
File metadata and controls
81 lines (67 loc) · 1.34 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700&family=Poppins&display=swap');
* {
font-family: 'Montserrat', sans-serif;
}
body {
display: flex;
justify-content: center;
}
section {
width: 600px;
}
h1 {
font-size: 30px;
text-align: left;
}
h2 {
font-size: 50px;
line-height: 1.05;
text-align: center;
}
p {
font-size: 15px;
}
.title-block {
width: 600px;
height: 210px;
background-color: rgb(102, 96, 221);
border-radius: 5px;
display: flex;
justify-content: center;
align-content: center;
color: white;
}
.answer-options {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 16px 0 23px 0;
}
.answer-block {
width: 286px;
height: 286px;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.07) 0 0 0 1px;
text-align: center;
margin-bottom: 15px;
overflow: hidden;
}
.answer-block img {
width: 100%;
}
.answer-block p {
font-size: 11px;
font-style: italic;
}
.answer-block a {
color: rgb(137, 137, 137);
}
.result-block {
width: 600px;
background-color: rgb(255, 61, 158);
border-radius: 5px;
border: solid rgb(255, 61, 158) 20px;
}
.result-block img {
width: 100%;
}