-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
88 lines (55 loc) · 1.05 KB
/
styles.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
78
79
80
81
82
83
84
85
86
87
/* Feel free to change any of the styling below!*/
body {
text-align: center;
background-color: #000;
color: white;
}
img {
width: 350px;
}
button {
background-color: #9EB25D;
border-color: #9EB25D;
font-size: 13px;
font-family: Palatino, URW Palladio L, serif;
border-radius: 50px;
width: 120px;
}
.title {
font-size: 50px;
font-weight: 800;
}
.buttons {
display: flex;
justify-content: center;
}
p {
font-size: 30px;
font-weight: 800;
}
button {
height: 40px;
}
h1 {
font-size: 50px;
color: white;
}
/* When someone enters your game, you only want them to see the opening and the option buttons. The code below will use the display property to hide certain parts of the story. Remove the comments from the code below when you're ready for that step!*/
.story-opening{
display:none;
}
.buttons{
display:none;
}
.option-one-screen{
display:none;
}
.option-two-screen{
display:none;
}
.option-one-end{
display:none;
}
.option-two-end{
display:none;
}