-
Notifications
You must be signed in to change notification settings - Fork 468
/
fairyTale.css
70 lines (57 loc) · 1.1 KB
/
fairyTale.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
@import url('<link href="https://fonts.googleapis.com/css2?family=Koulen&display=swap" rel="stylesheet">');
img {
width: 200px;
}
a {
color: limegreen;
}
html {
display: flex;
align-items: center;
}
@import url('<link href="https://fonts.googleapis.com/css2?family=Koulen&display=swap" rel="stylesheet">');
img {
width: 200px;
}
a {
color: limegreen;
}
html {
display: flex;
align-items: center;
}
body {
width: 100%;
margin: 24px;
font-family: 'Roboto Mono', monospace;
color: lightblue;
background-color: black;
}
.story-container {
display: none;
border-radius: 0px;
background-color: #3f3f3f;
padding: 24px;
min-height: 200px;
border: 8px gray inset;
}
.story {
text-align: center;
background-color: #4b5669;
border-radius: 10px;
}
h2 {
text-align: center;
}
button {
display: block;
margin-left: auto;
margin-right: auto;
background-color: antiqueWhite;
color: black;
font-size: 20px;
font-family: 'Roboto Mono', monospace;
border-radius: 15px;
cursor: pointer;
padding: 15px;
}