Files
tomodachi/style.css
T

67 lines
996 B
CSS
Raw Normal View History

2022-05-13 12:03:03 -06:00
:root {
--light-text: #FFFFFFD0;
--dark-bg: darkred;
}
@font-face {
font-family: "DEADCRT";
src: url("DEADCRT.ttf")
}
header {
background-color: var(--dark-bg);
height: 10vh;
width: 100vw;
}
.site-title {
2022-05-13 12:03:03 -06:00
display: flex;
align-items: center;
font-family: "DEADCRT";
/* background-color: var(--dark-bg); */
2022-05-13 12:03:03 -06:00
color: white;
padding-left: 2em;
padding-right: 2em;
padding-top: 1em;
/* height: 10vh; */
/* width: 100vw; */
2022-05-13 12:03:03 -06:00
padding-bottom: 1em;
position: fixed;
top: 0px;
z-index: 99;
}
main {
/* margin-top: 10vh; */
2022-05-13 12:03:03 -06:00
height: 500vh;
}
#hero-img {
background-image: url("hero-bg.jpg");
min-height: 60vh;
background-size: cover;
}
#signup-box h4, #ovly-text{
color: var(--light-text);
}
#pitch-bar {
height: 30vh;
2022-05-13 12:03:03 -06:00
background-color: var(--dark-bg);
color: var(--light-text);
}
.txt-lt {
color: var(--light-text);
}
.bg-drk {
background-color: var(--dark-bg);
}
.hanging-card {
min-height: 36vh;
position: relative;
top: 10vh;
2022-05-13 12:03:03 -06:00
}