Changed the structure so git root folder is also project root folder.
This commit is contained in:
37
wwwroot/css/douwco.css
Normal file
37
wwwroot/css/douwco.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@font-face {
|
||||
font-family: righteous;
|
||||
src: url(/fonts/Righteous-Regular.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: monsterrat_regular;
|
||||
src: url(/fonts/Montserrat-Regular.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: monsterrat_bold;
|
||||
src: url(/fonts/Montserrat-Bold.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
:root {
|
||||
--background-clr: #283e3e;
|
||||
--background-accent-clr: #324f4f;
|
||||
--blue-clr: #47bcdf;
|
||||
--green-clr: #6ede9a;
|
||||
--purple-clr: #a48da;
|
||||
--orange-clr: #e2a661;
|
||||
--white-clr: #ffffff;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: monsterrat_regular;
|
||||
background-color: var(--background-clr);
|
||||
color: var(--white-clr);;
|
||||
}
|
||||
|
||||
.title{
|
||||
font-family: righteous;
|
||||
}
|
||||
243
wwwroot/css/style.css
Normal file
243
wwwroot/css/style.css
Normal file
@@ -0,0 +1,243 @@
|
||||
/* ===== Base Styles ===== */
|
||||
|
||||
html, body{
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
body{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
margin: 20px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--blue-clr)
|
||||
}
|
||||
|
||||
footer {
|
||||
flex-shrink: 0;
|
||||
background: var(--background-clr);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
footer > Div {
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
footer > Div > p {
|
||||
font-size: 16px;
|
||||
margin: 10px 25px 10px 25px;
|
||||
}
|
||||
|
||||
/* ===== Container Layouts ===== */
|
||||
|
||||
.vert_container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.vert_container.revert {
|
||||
display: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.vert_container.centered{
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.vert_container.start{
|
||||
align-items: flex-start;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.scroll_container {
|
||||
overflow-y: auto;
|
||||
scroll-snap-type: y mandatory;
|
||||
}
|
||||
|
||||
.scroll_section {
|
||||
min-height: 100vh;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
/* ===== Navigationbar ===== */
|
||||
|
||||
.nav_option {
|
||||
font-family: monsterrat_bold;
|
||||
color: var(--white-clr);
|
||||
text-decoration: none;
|
||||
font-size: 36px;
|
||||
|
||||
border: none;
|
||||
border-radius: 20px;
|
||||
background-color: transparent;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.nav_option:hover{
|
||||
background-color: var(--background-accent-clr);
|
||||
}
|
||||
|
||||
.nav_option.active {
|
||||
background-color: var(--background-accent-clr);
|
||||
}
|
||||
|
||||
.nav_option span {
|
||||
color: var(--green-clr);
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.nav_option p {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Layout ===== */
|
||||
.panel {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.panel {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.text-section {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 128px;
|
||||
margin: 0;
|
||||
line-height: 1;
|
||||
text-wrap: balance;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.title {
|
||||
font-size: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.tagline {
|
||||
display: flex;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.tagline .green-text {
|
||||
color: var(--green-clr);
|
||||
}
|
||||
|
||||
.tagline .normal-text {
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.title {
|
||||
font-size: 100px;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 26px;
|
||||
width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-box {
|
||||
background-color: var(--background-accent-clr);
|
||||
margin: 50px 20px 20px;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.content-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.content-box .intro-text {
|
||||
font-weight: bolder;
|
||||
font-size: 28px;
|
||||
color: var(--green-clr)
|
||||
}
|
||||
|
||||
.project-thumb {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
object-fit: cover;
|
||||
margin-right: 15px;
|
||||
border-radius: 75x;
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
/* ===== Images ===== */
|
||||
|
||||
.icon {
|
||||
vertical-align: middle;
|
||||
padding: 10px;
|
||||
}
|
||||
.icon.small {
|
||||
height: 45px;
|
||||
}
|
||||
.icon.medium {
|
||||
height: 100px;
|
||||
}
|
||||
.icon.large {
|
||||
height: 250px;
|
||||
}
|
||||
@media (max-width: 1200px) {
|
||||
.icon.large.toggle {
|
||||
height: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.image{
|
||||
margin: 30px;
|
||||
}
|
||||
.image.large{
|
||||
width: 40%;
|
||||
}
|
||||
.image.small{
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.image.large {
|
||||
width: 80%;
|
||||
}
|
||||
.image.small{
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.image.stick {
|
||||
position: sticky;
|
||||
top: 20px
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user