-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (72 loc) · 1.41 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.poem {
font-size: 28px;
}
.story-section{
background-color: aliceblue
}
.blocked {
background-color: #222222;
transition: background-color 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
border-radius: 8px;
}
.faded {
opacity: .0;
transition: opacity 0.5s ease-in-out;
border-radius: 8px;
}
span {
opacity: 1;
transition: opacity 0.5s ease-in-out;
transition: background 0.5s ease-in-out;
border-radius: 8px;
}
.story {
font-size:15px;
margin-top:5px;
}
.story1 {
font-size:15px;
margin-top:5px;
}
.story2 {
font-size:15px;
margin-top:5px;
}
h3{
padding-top:1em;
}
div.menu{
background: #CCCCCC;
padding: 3px;
border: 1px solid black;
}
.marked {
background-color: yellow;
}
div.btn.reset { background: red; }
div.btn {
border-radius: 8px;
background: #FFFFFF;
/*display: inline-block;*/
vertical-align: middle;
margin: 4px 4px 4px 4px;
padding: 5px 5px 5px 5px;
}
.active{
background: yellow;
}
h1 {
font-size:50px;
text-align:center;
padding: 10% 0;
}
#changingword {
color:red;
}
#changingword1 {
color:rgb(25, 0, 255);
}
#changingword2 {
color:rgb(9, 255, 0);
}