-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (48 loc) · 835 Bytes
/
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
/* STYLE SECTIONING TAGS */
body {
margin: 2em;
background-color:#E3D6C9;
font-family:'georgia';
}
/* STYLE TEXT */
h1 {
font-style: italic;
color: #1F5C70;
font-family:'georgia';
}
h2 {
margin-top: 2em;
color : #FBA01D;
font-family:'georgia';
}
p {
color:#FCBC49;
font-family:'georgia';
}
/* STYLE FLEX CONTAINER */
.question {
display: flex;
/* uncomment the next line to center the questions and answers */
justify-content: center;
margin-top: 2em;
}
/* STYLE FLEX ITEM */
.answer-choice {
margin: 5px;
font-family:'georgia';
}
/* STYLE IMAGES */
.answer-choice img {
height: 10em;
border-radius:10%;
margin: 5px;
border: 5px dashed #1F5C70;
}
/* STYLE BUTTON */
button {
margin-top: 5px;
background-color:#B29476;
color:#1F5C70;
padding: 5px;
font-family:'georgia';
}