Skip to content

Commit 498f39e

Browse files
committed
test
1 parent 3ac001b commit 498f39e

File tree

3 files changed

+74
-2
lines changed

3 files changed

+74
-2
lines changed

index.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@
1919
<script src="main.js"></script>
2020
</head>
2121
<body>
22-
<!-- Your Code Here -->
22+
<div class="banner"></div>
23+
<div class="header">
24+
<div class="logo"><img src="site_images/logo.png"></div>
25+
<div id="title">Scotty Shirts U Illustrate (SSUI)</div>
26+
</div>
27+
<hr color="#dddddd"/>
28+
<ul>
29+
<li><a href="#home">T-SHIRTS</a></li>
30+
<li><a href="#news">HOODIES</a></li>
31+
<li><a href="#contact">CREATE YOUR OWN</a></li>
32+
<li><a href="#contact">ABOUT US</a></li>
33+
<li><a href="#contact">YOUR ACCOUNT</a></li>
34+
</ul>
35+
<img src="site_images/home.png" style="width:100%;height:auto;">
2336
</body>
2437
</html>

shirt_images/not-found.png

40.8 KB
Loading

style.css

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,60 @@
1-
/* Your Code Here */
1+
html, body {
2+
margin: 0;
3+
height: 100%;
4+
}
5+
6+
.banner {
7+
width: 100%;
8+
height: 20px;
9+
background-color: #c51230;
10+
}
11+
12+
.header {
13+
display: flex;
14+
justify-content: space-between;
15+
margin-top: 20px;
16+
}
17+
18+
.header .logo{
19+
display: inline-block;
20+
vertical-align: middle;
21+
margin-left: 10%;
22+
}
23+
24+
.header .logo img{
25+
width: 200px;
26+
}
27+
28+
.header #title {
29+
display: flex;
30+
align-items: center;
31+
margin-right: 10%;
32+
font-family: "Catamaran";
33+
font-size: 45px;
34+
font-weight: 200;
35+
}
36+
37+
ul {
38+
list-style-type: none;
39+
margin: 0;
40+
padding: 0;
41+
overflow: hidden;
42+
display: flex;
43+
justify-content: space-evenly;
44+
}
45+
46+
li a {
47+
display: block;
48+
color: #c51230;
49+
text-align: center;
50+
font-family: "Open Sans";
51+
padding: 14px 16px;
52+
text-decoration: underline solid transparent;
53+
}
54+
55+
/* Change the link color to #111 (black) on hover */
56+
li a:hover {
57+
text-decoration: underline #c51230;
58+
text-decoration-thickness: 10px;
59+
transition: 1s ease;
60+
}

0 commit comments

Comments
 (0)