-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (58 loc) · 993 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
margin: 0;
padding: 0;
font-family: "Open Sans", sans-serif;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
overflow: hidden;
}
main {
overflow: auto;
}
header {
padding: 1.5rem;
box-shadow: 0px 4px 8px grey;
}
footer {
padding: 1rem;
}
h1 {
color: #257708;
text-align: center;
}
.footer-note {
text-align: center;
}
.footer-note a {
color: #257708;
}
.btn {
text-decoration: none;
padding: 1rem;
border: 3px solid #257708;
color: #257708;
font-weight: bold;
}
.btn:hover {
background-color: #257708;
color: white;
transition: 0.5s;
}
#story-choices {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.story-choice {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
margin: 1rem;
}