-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
108 lines (91 loc) · 1.89 KB
/
mystyle.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
105
106
107
108
@import "{{ site.theme }}";
body {
font-family: Garamond;
font-size: 14.66px;
margin: auto;
text-align: center;
}
header {
padding: 10mm;
}
.page {
padding: 15mm;
width: 105mm;
height: auto;
margin: auto;
border: 1px solid #000000;
box-sizing: border-box;
text-align: center;
}
.page_number {
}
.page_story {
text-align: justify;
text-align-last: justify;
}
.poem {
text-align: left;
text-align-last: left;
padding-left: 10mm;
font-style: italic;
}
header ul {
list-style-type: none;
margin: 0px;
padding: 0px;
overflow: hidden;
background-color: #333;
border-radius: 5px;
height: 47px;
}
header li {
float: left;
}
header li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
header li a:hover {
background-color: #111;
}
.highlight {
background-color: yellow;
}
.highlight .comment {
visibility: hidden;
width: 250px;
background-color: LemonChiffon;
text-align: left;
text-align-last: left;
padding: 5px;
position: absolute;
z-index: 1;
font-style: normal;
}
.highlight:hover .comment {
visibility: visible;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: dodgerblue; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 50px; /* Rounded corners */
font-size: 50px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
mark {
background-color: LightGreen;
}