-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswapiQuizStyle.css
56 lines (49 loc) · 927 Bytes
/
swapiQuizStyle.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
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
background-image: url("space.jpg");
align-items: center;
margin: .25em;
}
h1 {
color: orange;
font-family: 'Exo', sans-serif;
font-size: 4em;
margin: 0px;
}
#instructions {
color: white;
font-family: /*'PT Sans',*/ sans-serif;
font-size: 1.25em;
font-style: italic;
}
.characterDetails {
border: 2px solid orange;
border-radius: 5px;
background-color: #fff6e6;
width: 20rem;
height: auto;
padding: 2rem;
color: orange;
font-family: /*'PT Sans',*/ sans-serif;
font-size: 1.25em;
}
#characterName {
color: #ffb833;
font-family: 'Exo', sans-serif;
font-size: 2em;
visibility: hidden;
}
#showAnswerButton, #tryAgainButton {
margin-top: 1rem;
padding: .25em 1.5em ;
border-radius: 12px;
background-color: #ffc966;
color: white;
font-family: 'PT Sans', sans-serif;
font-style: italic;
border: 2px solid orange;
}