Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 79 additions & 4 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

*{
box-sizing: border-box;
}
body {

font-family: Open Sans, sans-serif ;
background-image: linear-gradient(whitesmoke and rgb(35, 47, 58));
}

/* Navigation Styles */
Expand All @@ -17,8 +20,9 @@ nav li {
li a {
display: block;
color: white;
padding: 30px 30px 30px 30px;
padding: all;
text-decoration: none;
text-align: center;
}
li a:hover {
background-color: rgb(40, 39, 39);
Expand All @@ -44,37 +48,108 @@ section {
margin: auto;
}
.center-title {
text-align: center;

}

/* About Section Styles */
#about-sec {
display: flex;
flex-direction: column;

}


#about-sec h2{
font-size: 1.95em;
padding: 0 1.5em;
}

#about-sec #about-blurb{
padding: 0 2.5em;
}

#about-sec div {
display: inline-flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-evenly;
}










figure {
display: flex;
flex-direction: column;


}

figcaption {
font-style: italic;
background-color: rgb(35, 47, 58);
color: whitesmoke;
padding: 0.25em;
opacity: 0.5;
font-size: 0.85em;
}

/* Aside Styles */
aside {
display: flex;
flex-direction: column;
border: 4px double black;
margin: 1em 0;
color: rgba(35, 47, 58, 0.05);
background-color: rgba(35, 47, 58, 0.05);

}

aside p {
font-weight: 600;
font-size: 1.25em;
background-color: rgb(35, 47, 58);
color: whitesmoke;
padding: 0.5em;
margin: 0;
text-transform: uppercase;
border-bottom: 4px double rgba(0, 0, 0, 0.77);
opacity: 0.6;
}

aside ul{
font-size: 0.9em;
margin: 1em 1em;
padding: 0 0.75em 0 1em;
}

aside ul li a{
text-align: justify;
padding: 0;
color: rgb(35, 47, 58);
text-decoration: underline;
}

/* Table - Concert Schedule Styles */
#concert-schedule-sec {
max-width: 940px;
width: 100vw;
margin: 0 auto;
height: max-content;
color: rgb(255, 54, 154);
background-color: black;
padding: 2em;
}

#concert-schedule-sec h3 {
font-size: 2em;

}

/* Form - Ticket Form Styles */
Expand Down
10 changes: 7 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="stylesheet" href="./assets/css/style.css" /> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,400;0,900;1,200;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css" />

</head>

<body>
Expand Down Expand Up @@ -38,7 +42,7 @@ <h2>About.</h2>

<div>
<figure>
<img src="./assets/images/harrystyles.png" alt="harrystyles" width="1000">
<img src="./assets/images/harrystyles.png" alt="harrystyles" width="30%">
<!-- Figcaption element to caption your image -->
<figcaption>
Harry Styles performing free concert fundraiser for US wildfire relief
Expand All @@ -54,7 +58,7 @@ <h2>About.</h2>
<li>From Redditch, United Kingdom</li>
<li>Height: 6'0"</li>
<li>Music Group: One Direction (since 2010)</li>
<li><a href="">See Movies</a></li>
<li><a href="https://www.imdb.com/list/ls005577156/">See Movies</a></li>
</ul>
</aside>
</div>
Expand Down