pages/assets/styles/main.css

116 lines
1.6 KiB
CSS
Raw Normal View History

2022-02-02 06:23:51 +00:00
.blurred-container {
2022-03-22 00:05:10 +00:00
position: relative;
width: 100%;
min-height: 35vh;
height: 350px;
top: 0;
left: 0;
2022-02-02 06:23:51 +00:00
}
.blurred-container .motto {
2022-03-22 00:05:10 +00:00
color: #fff;
font-size: 76px;
font-weight: 600;
text-align: center;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
text-transform: uppercase;
top: 7.5vh;
z-index: 3;
display: block;
margin: 0 auto;
position: relative;
width: 60%;
height: 0;
2022-02-02 06:23:51 +00:00
}
.motto h1 {
2022-03-22 00:05:10 +00:00
background: #0000007d;
2022-02-02 06:23:51 +00:00
}
.blurred-container .img-src {
2022-03-22 00:05:10 +00:00
position: fixed;
width: 100%;
min-height: 35vh;
height: 350px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
2022-02-02 06:23:51 +00:00
}
.blur {
2022-03-22 00:05:10 +00:00
opacity: 0;
2022-02-02 06:23:51 +00:00
}
main {
2022-03-22 00:05:10 +00:00
position: relative;
background-color: #fff;
2022-02-02 06:23:51 +00:00
}
/* Gives me greater control over fonts */
.font-serif {
2022-03-22 00:05:10 +00:00
font-family: Georgia, "Times New Roman", Times, serif;
2022-02-02 06:23:51 +00:00
}
.font-sans {
2022-03-22 00:05:10 +00:00
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
2022-02-02 06:23:51 +00:00
}
.font-mono {
2022-03-22 00:05:10 +00:00
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
2022-02-02 06:23:51 +00:00
}
.font-small-caps {
2022-03-22 00:05:10 +00:00
font-variant-caps: small-caps;
2022-02-02 06:23:51 +00:00
}
.strikethrough {
2022-03-22 00:05:10 +00:00
text-decoration: line-through;
2022-02-02 06:23:51 +00:00
}
.sfTable {
2022-03-22 00:05:10 +00:00
margin: 0 auto;
2022-02-02 06:23:51 +00:00
}
.text-align-left {
2022-03-22 00:05:10 +00:00
text-align: left;
2022-02-02 06:23:51 +00:00
}
.text-align-right {
2022-03-22 00:05:10 +00:00
text-align: right;
2022-02-02 06:23:51 +00:00
}
.float-left {
2022-03-22 00:05:10 +00:00
float: left;
2022-02-02 06:23:51 +00:00
}
.float-right {
2022-03-22 00:05:10 +00:00
float: right;
2022-02-02 06:23:51 +00:00
}
.media-object {
2022-03-22 00:05:10 +00:00
max-height: 100%;
max-width: 100%;
2022-02-02 06:23:51 +00:00
}
@media (min-width: 768px) {
2022-03-22 00:05:10 +00:00
.pull-left {
max-width: 25%;
}
2022-02-02 06:23:51 +00:00
}
h1 small {
2022-03-22 00:05:10 +00:00
font-size: 60%;
color: #9a9a9a;
font-weight: 300;
line-height: 1.5;
2022-02-02 06:23:51 +00:00
}
h1 {
2022-03-22 00:05:10 +00:00
font-weight: 400;
margin: 30px 0 15px;
2022-02-02 06:23:51 +00:00
}
2022-02-15 03:04:04 +00:00
.dogear {
2022-03-22 00:05:10 +00:00
clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
2022-02-15 03:04:04 +00:00
}