Skip to content

Commit b1d0c86

Browse files
committed
added icon
1 parent b580810 commit b1d0c86

File tree

8 files changed

+19
-4
lines changed

8 files changed

+19
-4
lines changed

static/gem.png

20.7 KB
Loading

static/styles/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ h1 {
44
font-family: Georgia;
55
text-shadow: 0px 0px 15px #4444dd;
66
}
7+
img {
8+
height: 20px;
9+
}
710
p {
811
text-align: center;
912
color: white;
@@ -54,6 +57,12 @@ p {
5457
font-size: 17px;
5558
}
5659

60+
61+
.icon {
62+
height: 16px;
63+
64+
}
65+
5766
/* Change the color of links on hover */
5867
.topnav a:hover {
5968
background-color: #ddd;
@@ -70,6 +79,7 @@ p {
7079
float: right;
7180
}
7281

82+
7383
body {
7484
background-color: rgba(135, 206, 250);
7585
font-family: "Lato", "Lucida Grande", "Lucida Sans Unicode", Tahoma,

templates/checkin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88

99
<div class="topnav">
10-
<a href="/">GEMS</a>
10+
<a href="/"><img src="static/gem.png" class="icon">GEMS</a>
1111
<a class='active' href="{{ url_for('checkin') }}">Check-In</a>
1212
<a href="{{ url_for('checkout') }}">Check-out</a>
1313
<a href="{{ url_for('host') }}">Host-Registration</a>

templates/checkout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<body>
88
<div class="topnav">
9-
<a href="/">GEMS</a>
9+
<a href="/"><img src="static/gem.png" class="icon">GEMS</a>
1010
<a href="{{ url_for('checkin') }}">Check-In</a>
1111
<a class='active' href="{{ url_for('checkout') }}">Check-out</a>
1212
<a href="{{ url_for('host') }}">Host-Registration</a>

templates/home.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<title>G.E.M.S.</title>
45
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='styles/style.css') }}">
56
</head>
67

78
<body>
8-
</div>
9+
<div class = "heading">
10+
<h1>G.E.M.S.</h1>
11+
</div>
912
<main id="main">
1013
<h1><a href = "/pin"><button>REGISTER-HOST</button></a></h1>
1114
<h1><a href = "/checkin"><button>CHECK-IN</button></a></h1>

templates/host.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88

99
<div class="topnav">
10-
<a href="/">GEMS</a>
10+
<a href="/"><img src="static/gem.png" class="icon">GEMS</a>
1111
<a href="{{ url_for('checkin') }}">Check-In</a>
1212
<a href="{{ url_for('checkout') }}">Check-out</a>
1313
<a class='active' href="{{ url_for('host') }}">Host-Registration</a>

templates/viewH.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<body>
77

88
<div class="topnav">
9+
<a href="/"><img src="static/gem.png" class="icon">GEMS</a>
910
<a href="{{ url_for('checkin') }}">Check-In</a>
1011
<a href="{{ url_for('checkout') }}">Check-out</a>
1112
<a href="{{ url_for('host') }}">Host-Registration</a>

templates/viewV.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<body>
77

88
<div class="topnav">
9+
<a href="/"><img src="static/gem.png" class="icon">GEMS</a>
910
<a href="{{ url_for('checkin') }}">Check-In</a>
1011
<a href="{{ url_for('checkout') }}">Check-out</a>
1112
<a href="{{ url_for('host') }}">Host-Registration</a>

0 commit comments

Comments
 (0)