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
111 changes: 90 additions & 21 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
* {
box-sizing: border-box;
}

body {

background-image: linear-gradient(to bottom, whitesmoke 0%, rgb(35, 47, 58) 100%);
font-family: 'Open Sans', sans-serif;
}

/* Navigation Styles */
Expand All @@ -11,17 +15,22 @@ nav ul {
display: table;
width: 100%;
}

nav li {
display: table-cell
}

li a {
display: block;
color: white;
padding: 30px 30px 30px 30px;
text-decoration: none;
text-align: center;
}

li a:hover {
background-color: rgb(40, 39, 39);
background-color: whitesmoke;
color: rgb(255, 54, 154);
}

/* Header Styles */
Expand All @@ -39,70 +48,130 @@ h1 {
section {
display: flex;
justify-content: center;

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

.center-title {
text-align: center;
}

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

}

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

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

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

figure {
display: flex;
width: 30%;
flex-direction: column;

}

/* 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 li a {
text-align: justify;
padding: 0;
color: rgb(35, 47, 58);
text-decoration: underline;
}

aside ul li {
color: palevioletred;
}

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

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

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

/* Form - Ticket Form Styles */
form {
width: 35vw;
margin: auto;
}
}

input[type="text"], input[type="number"] {
min-height: 15px;
border-radius: 5px;
border:1px solid #cccccc;
input[type="text"],
input[type="number"] {
min-height: 15px;
border-radius: 5px;
border: 1px solid #cccccc;
}

input[type="radio"] {
margin-left: 12px;
margin-left: 12px;
}

th {
border: 2px solid #8c6b48;
border: 2px solid #8c6b48;
}

table {
text-align: center;
margin: 20px auto;
text-align: center;
margin: 20px auto;
}

td {
border: 2px solid #8c6b48;
width: 300px;
}
border: 2px solid #8c6b48;
width: 300px;
}
Loading