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
76 changes: 67 additions & 9 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: url('<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:ital@0;1&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Space+Mono&family=Work+Sans:wght@400;500;800&display=swap" rel="stylesheet">') sans-serif;
}

/* Navigation Styles */
Expand All @@ -17,39 +20,41 @@ nav li {
li a {
display: block;
color: white;
padding: 30px 30px 30px 30px;
padding: 30px 30px;
text-decoration: none;
text-align: center;
}
li a:hover {
background-color: rgb(40, 39, 39);
}

/* Header Styles */
/*

header {
background-color:
background-image: linear-gradient(whitesmoke, rgb(35, 47, 58));
}
h1 {
color:
} */
color:
}


/* Main Page Content Styles */

section {
display: flex;
justify-content: center;

flex-direction: column;
width: 80%;
margin: auto;
}
.center-title {

text-align: center;
}

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

}
#about-sec div {
Expand All @@ -58,23 +63,76 @@ section {
flex-wrap: nowrap;
justify-content: space-evenly;
}
#about-sec h2 {
font-size: 1.95em;
padding: 0 1.5em;
}
#about-sec #about-blurb {
padding: 0 2.5em;
}
figure {
display: flex;
width: 30%;
flex-direction: column;
}

figcaption {
font-style: italic;
background-color: rgba(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);
color: whitesmoke;
}

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

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

aside ul {
font-size: 0.9em;
margin: 1em;
padding: 0 o.75em 1em;

}

/* 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
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="stylesheet" href="./assets/css/style.css" /> -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>

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

<div>
<figure>
<img src="./assets/images/harrystyles.png" alt="harrystyles" width="1000">
<img src="./assets/images/harrystyles.png" alt="harrystyles">
<!-- Figcaption element to caption your image -->
<figcaption>
Harry Styles performing free concert fundraiser for US wildfire relief
Expand Down