-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
148 lines (133 loc) · 3.42 KB
/
welcome.html
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
background-color: #04AA6D;
color: white;
padding: 16px;
font-size: 16px;
border: none;
border-radius: 8px;
}
.dropbtn2 {
background-color: #b3b3b3;
color: white;
min-width: 110px;
padding: 16px;
font-size: 16px;
border: none;
border-radius: 8px;
}
.dropdown {
position: relative;
padding: 4px;
display: inline-block;
}
.dropdown2 {
position: relative;
padding: 4px;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 120px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 10px;
}
.dropdown-content2 {
display: none;
position: absolute;
top: 0px;
left: 118px;
background-color: #66ff99;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 10px;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
border-radius: 8px;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}
.dropdown-content2 a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
border-radius: 8px;
}
.dropdown-content2 a:hover {background-color: #00ffff;}
.dropdown2:hover .dropdown-content2 {display: block;}
.dropdown2:hover .dropbtn2 {background-color: #666666;}
.center {
position:absolute;
width: 100%;
top:30%;
text-align:center;
color:white;
}
</style>
<title>DnD game wiki</title>
<link rel="icon" type="image/x-icon" href="https://github.com/Pancake010/Pancake010.github.io/blob/main/SmallLogo.png?raw=true">
</head>
<body style="background-color:black;">
<style>
body, html{
height:100%;
}
body{
background-image: url('https://github.com/Pancake010/Pancake010.github.io/blob/main/ezgif.com-gif-maker.gif?raw=true');
padding:0;
margin:0;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
</style>
<div class="center">
<h1>Welcome adventurers!</h1>
<p>Come and sit at the campfire. Have some food, share your stories, and take a short rest.</p>
</div>
<div class="dropdown">
<button class="dropbtn">Menu</button>
<div class="dropdown-content">
<div class ="dropdown2">
<button class="dropbtn2">Characters</button>
<div class = "dropdown-content2">
<a href="https://pancake010.github.io/zedd.html">Zedd</a>
<a href="https://pancake010.github.io/chase.html">Chase</a>
<a href="https://pancake010.github.io/darkhenrahl.html">Darkhen Rahl</a>
<a href="#">?</a>
</div>
</div>
<div class ="dropdown2">
<button class="dropbtn2">Places</button>
<div class = "dropdown-content2">
<a href="https://pancake010.github.io/westland.html">Westland</a>
<a href="https://pancake010.github.io/heartland.html">Heartland</a>
<a href="#">?</a>
</div>
</div>
<div class ="dropdown2">
<button class="dropbtn2">Other</button>
<div class = "dropdown-content2">
<a href="https://pancake010.github.io/quad.html">Quad fighters</a>
<a href="https://pancake010.github.io/gar.html">Gars</a>
<a href='https://pancake010.github.io/swordoftruth.html'>Sword of Truth</a>
<a href="#">?</a>
</div>
</div>
</div>
</div>
</body>
</html>