wyattjmiller.com/src/style.css

53 lines
2.2 KiB
CSS
Raw Normal View History

2018-05-18 06:38:59 -05:00
/* Imports */
2018-05-24 22:43:26 -05:00
@import url('https://fonts.googleapis.com/css?family=Oswald|Pacifico|Kavivanar');
2018-05-18 06:38:59 -05:00
/* Global rules */
/* Elements */
html {}
body {}
h1,h2,h3,h4,h5,h6 {}
a {color: white !important;}
a:hover {color: seashell !important;}
/* IDs */
#twitch-embed {text-align: center;}
/* Classes */
.header {background-color: #4c4e51;}
.header-title {color: whitesmoke;}
.header-title h1 {font-family: "Pacifico", cursive; font-size: 72px; text-align: center; margin: 0; padding: 35px;}
2018-12-28 21:42:40 -06:00
.footer {font-family: "Oswald", sans-serif; background-color: #4c4e51; padding: 20px; position: sticky; width: 100%; bottom: 0;}
2018-05-18 06:38:59 -05:00
.footer p {font-size: 20px; color: white; text-align: center; padding: 5px;}
.footer a {color: white; text-decoration-color: white; text-decoration-line: none;}
.footer a:hover {color: white;}
.main-section {position: relative; background-size: 100%; background-image: url("tracks.jpg"); background-color: black; padding: 30px 5px;}
.main-background {border-radius: 25px; padding: 25px;}
.main-background h2 {font-family: "Kavivanar", cursive; position: relative; font-size: 54px; color: white; text-align: center;}
.main-background p {font-family: "Kavivanar", cursive; position: relative; font-size: 36px; color: white; text-align: center;}
2018-12-28 21:42:40 -06:00
.main-background-text a {
color: #ff9999 !important;
}
2018-05-18 06:38:59 -05:00
.about-background h2 {position: relative; font-size: 24px; color: white;}
.about-background p {position: relative; font-size: 20px; color: white;}
.nav-pills .nav-link {font-size: 24px; background-color: #f08080 !important; border-radius: 0 !important; border-style: solid; border-width: 2px; border-color: black;}
2018-05-21 00:22:22 -05:00
.nav-link a {font-family: "Oswald", cursive; font-size: 30px; color: white; text-decoration-color: white;}
.nav-link a:hover {background-color: #efa0a0 !important; text-decoration-color: white;}
a:hover.nav-item.nav-link {background-color: #efa0a0 !important; text-decoration-color: white;}
a.nav-item.nav-link {font-family: "Oswald", cursive; font-size: 30px;}
2018-05-18 06:38:59 -05:00
/*Media queries*/
@media (min-width: 768px){
.main-section {padding: 50px 10px;}
2018-12-28 21:42:40 -06:00
2018-05-18 06:38:59 -05:00
}
@media (min-width: 992px){
.main-section {padding: 70px 10px;}
}
@media (min-width: 1200px){
2018-12-28 21:42:40 -06:00
.main-section {padding: 124px 200px;}
2018-05-18 06:38:59 -05:00
.main-section h2 {text-align: center;}
}