-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNew Text Document.txt
87 lines (73 loc) · 1.28 KB
/
New Text Document.txt
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
<html>
<head>
<style>
$fcc-brown: #502D16;
$fcc-teal: #457E86;
$fcc-gray: #EEEEEE;
body {
background-color: $fcc-teal;
}
#header {
background-color: $fcc-brown;
padding: 1px;
}
#fcc-logo {
height: 50px;
}
.panel {
border-color: $fcc-brown;
background-color: $fcc-gray;
margin-top: 10px;
}
.panel-heading {
background-color: $fcc-brown;
color: $fcc-gray;
border-bottom: none;
text-align: center;
padding-bottom: 0;
}
#panel-title {
margin: 0px;
}
.nav-tabs {
border: none;
}
.nav-tabs a {
color: $fcc-gray;
}
.nav-tabs > li.active > a {
background-color: $fcc-gray !important;
color: $fcc-brown;
}
.nav-tabs > li > a:hover {
background-color: $fcc-brown;
border: none;
}
.proPic {
border-radius: 5px;
margin-right: 10px;
}
.camperName {
font-size: 16px;
}
.hidden {
display: none;
}
</style>
</head>
<div id="header">
<a href="https://freecodecamp.com">
<img id="fcc-logo" alt="Free Code Camp" src="https://s3.amazonaws.com/freecodecamp/logo4.0LG.png" />
</a>
</div>
<div class="container">
<div class="panel">
<div id="headingContainer" class="panel-heading">
<h3 id="panel-title">Leaderboard</h3>
<div id="tabContainer"></div>
</div>
<div id="tableContainer" class="panel-body">
</div>
</div>
</div>
</html>