Files
tomodachi/style.css
T

156 lines
2.0 KiB
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";
2022-05-13 16:03:01 -06:00
src: url("DEADCRT.ttf");
}
@font-face {
font-family: "subway";
src: url("subway.ttf")
2022-05-13 12:03:03 -06:00
}
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;
2022-05-13 16:03:01 -06:00
font-family: "DEADCRT", monospace;
/* 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;
}
2022-05-13 16:03:01 -06:00
.tomodachi {
font-family: "DEADCRT";
}
.subway {
font-family: 'subway', monospace;
}
2022-05-13 12:03:03 -06:00
#hero-img {
background-image: url("hero-bg.jpg");
min-height: 60vh;
background-size: cover;
}
#pitch-bar {
2022-05-13 14:33:11 -06:00
min-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);
}
2022-05-13 16:03:01 -06:00
.dyn-fsize-3 {
font-size: 16px;
}
2022-05-13 14:33:11 -06:00
@media only screen and (min-width: 768px) {
.hanging-card {
min-height: 30vh;
position: relative;
top: 10vh;
}
/* Push Down 15vh */
2022-05-13 15:05:25 -06:00
.mt-md-15vh {
2022-05-13 14:33:11 -06:00
margin-top: 15vh;
}
2022-05-13 16:03:01 -06:00
.dyn-fsize-3 {
font-size: 32px;
}
2022-05-13 14:03:43 -06:00
}
2022-05-13 14:33:11 -06:00
2022-05-13 14:03:43 -06:00
#pitch {
background-image: linear-gradient(135deg, #c90051, #194bd3);
}
img {
height: 100%;
max-width: 100%;
object-fit: cover;
}
.full-height {
height: 100%;
}
.left-bar {
border-left-width: 0.4em;
border-left-style: solid;
2022-05-13 15:05:25 -06:00
border-left-color: var(--dark-bg);
2022-05-13 14:03:43 -06:00
}
.sq {
border-radius: 0px;
}
.bg-trans {
background-color: #00000040;
}
.bg-blur {
background-color: transparent;
backdrop-filter: blur(8px);
}
.form-control {
background-color: #D0D0D080;
border-radius: 0px;
border-width: 0px;
}
.btn {
border-radius: 0px;
color: white;
background-color: darkred;
}
2022-05-13 15:05:25 -06:00
.bg-dgry {
2022-05-13 14:03:43 -06:00
background-color: #2e2e2e;
}
2022-05-13 15:05:25 -06:00
.mh-40-v {
2022-05-13 14:03:43 -06:00
min-height: 40vh;
}
.bg-grey {
background-color: #777374;
}
.txt-red {
color: darkred;
}
2022-05-13 15:05:25 -06:00
.mh-20vh {
2022-05-13 14:03:43 -06:00
min-height: 20vh;
}
2022-05-13 15:05:25 -06:00
.mh-10vh {
2022-05-13 14:03:43 -06:00
min-height: 10vh;
2022-05-13 12:03:03 -06:00
}