-
Notifications
You must be signed in to change notification settings - Fork 2
/
Character.html
96 lines (84 loc) · 2.97 KB
/
Character.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
<!DOCTYPE html>
<!--
Program: Project
Author: Leah Rieger
Date: 02/25/2020
-->
<head>
<meta charset="utf-8" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<title>NPC</title>
<meta name="author" content="Leah Rieger">
<script src="https://kit.fontawesome.com/6bb03a50c0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" media="screen" href="layout.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great|News+Cycle|Oswald&display=swap" rel="stylesheet">
</head>
<body class = "banner3">
<div id="header">
<button class = "openbtn" onclick="openNav()"><i class="fas fa-concierge-bell"></i></button>
<div class = "header">
<img src = "splat.png"><h1 class = "header"> NPC</h1>
</div>
<!-- NAV -->
<div id="main">
<div class="sidebar" id = "mySidebar">
<a id = "icon" href="javascript:void(0)" class="closebtn" onclick="closeNav()"><i class = "fas fa-times"></i></a>
<!-- logo -->
<img class = "sidebar-logo" src = "logo.png" alt = "Leah Logo">
<a id = "icon" href="index.html"><i style='font-size:20px' class="fas fa-caravan"></i> Home</a>
<a id = "icon" href="Rules.html"><i class="fas fa-book-dead"></i> Rules</a>
<a id = "icon" class="active" href="Character.html"><i class="fas fa-dragon"></i> NPC</a>
<a id = "icon" href="Decks.html"><i class="fas fa-dice-d20"></i> Decks</a>
<a id = "icon" href="Contact.html"><i class="fab fa-hubspot"></i> Coms</a>
</div>
</div>
</div>
<!-- TAB -->
<div class="warpper">
<input class="radio" id="one" name="group" type="radio" checked>
<input class="radio" id="two" name="group" type="radio">
<div class="tabs1">
<!-- TAB 1 -->
<label class="tab" id="one-tab" for="one"><i id="outside2" class ="fas fa-users"></i></label>
<!-- TAB 2 -->
<label class="tab" id="two-tab" for="two"><i id="outside2" class ="fas fa-skull"></i></label>
</div>
<div class="panels">
<div class="panel" id="one-panel">
<div class="panel-title">Friendlies</div> <!-- TAB 1 -->
<p class = "panel-info">
Info to come soon..
<br>
<br>
<br>
</p>
</div>
<div class="panel" id="two-panel">
<div class="panel-title">Monsters</div> <!-- TAB 2 -->
<p class = "panel-info">
Info to come soon..
<br>
<br>
<br>
</p>
</div>
</div>
</div>
<div id="sticker">
<p>Need some dice? Use some virtual d20:</p>
<a href="http://a.teall.info/dice/" target="_blank">
<button id="outside" type="button"><i class="fas fa-dice-d20"></i></button>
</a>
</div>
<script>
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
</body>
</html>