This repository was archived by the owner on Jul 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (97 loc) · 1.67 KB
/
style.css
File metadata and controls
115 lines (97 loc) · 1.67 KB
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
109
110
111
112
113
114
115
body {
background-color: bisque;
}
.sticky {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
background-color: burlywood;
overflow: hidden;
}
.linkbtn {
min-width: 80px;
border: none;
color: slategrey;
background-color: transparent;
font-size: 30px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
padding-bottom: 12px;
padding-top: 12px;
padding-left: 23px;
padding-right: 23px;
vertical-align: text-top;
}
.linkbtn:hover {
background-color: silver;
}
.dropdown-content {
display: none;
min-width: 80px;
border: none;
color: slategrey;
font-size: 20px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
padding: 8px;
margin: 4px;
vertical-align: text-top;
}
.dropdown:hover .dropdown-content {
display: inline;
}
.dropdown {
position: relative;
display: inline;
}
.dropdown-content a {
color: slategrey;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: silver;
}
.basic {
min-width: 80px;
border: none;
color: saddlebrown;
background-color: transparent;
font-size: 18px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
padding: 6px;
margin-top: 20px;
}
h1 {
font-size: 45px;
font-weight: bold;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 30px;
}
h4 {
font-size: 25px;
}
h5 {
font-size: 25px;
font-style: italic;
}
h6 {
font-size: 20px;
font-style: italic;
}
.crestimg {
margin: 5px;
}
.authortext {
font-style: italic;
}
.basic a {
text-decoration: none;
color: #431;
}