-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
104 lines (94 loc) · 1.85 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@import url("https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap");
body {
background-color: #161616;
color: whitesmoke;
font-family: "Syne Mono", monospace;
font-size: large;
overflow-x: hidden;
overflow-y: visible;
}
pre {
margin-top: 5px;
margin-bottom: 5px;
}
#story-area {
max-height: 100%;
overflow-x: hidden;
overflow-y: visible;
margin: 0;
padding: 0;
}
#spacer {
justify-content: left;
text-align: left;
max-height: 2px;
height: 1px;
border-width: 0;
background-color: rgb(116, 116, 116);
font-size: 0;
border: 1px solid rgb(116, 116, 116);
margin-top: 1;
margin-bottom: 1;
}
.blinking-cursor {
font-weight: 100;
font-size: 25px;
color: whitesmoke;
margin-left: 0;
padding-left: 0;
animation: 1s blink step-end infinite;
}
@keyframes blink {
from,
to {
color: transparent;
}
50% {
color: whitesmoke;
}
}
.choice {
background-color: white;
color: rgb(0, 0, 0);
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
font-weight: 100;
border: 2px solid lime;
}
.choice:hover {
background-color: lime;
color: white;
}
.chosen:disabled {
background-color: rgb(122, 122, 122);
color: rgb(34, 34, 34);
border: 2px solid rgb(77, 121, 77);
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
font-weight: 100;
}
.not-chosen:disabled {
background-color: rgb(122, 122, 122);
color: rgb(34, 34, 34);
border: 2px solid rgb(119, 71, 71);
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
font-weight: 100;
}