Moved to Next.js css modules
parent
250cae301e
commit
90c2d3161d
@ -0,0 +1,28 @@
|
|||||||
|
.header {
|
||||||
|
font-size: 4rem;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
padding-top: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input,
|
||||||
|
.textarea {
|
||||||
|
border-color: var(--borders);
|
||||||
|
color: var(--foreground);
|
||||||
|
background-color: var(--secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.textarea {
|
||||||
|
resize: none;
|
||||||
|
height: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submit {
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact {
|
||||||
|
height: 100vh;
|
||||||
|
|
||||||
|
padding-top: 10rem;
|
||||||
|
}
|
@ -0,0 +1,31 @@
|
|||||||
|
.body {
|
||||||
|
background-color: var(--secondary);
|
||||||
|
border-top: 0.1rem solid var(--borders);
|
||||||
|
|
||||||
|
padding: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
width: 5rem;
|
||||||
|
height: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.branding {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 2rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.socials {
|
||||||
|
margin-left: 4rem;
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
padding: 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.socialLink {
|
||||||
|
height: 3rem;
|
||||||
|
width: 3rem;
|
||||||
|
margin-right: 2rem;
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
.bar {
|
||||||
|
z-index: 1;
|
||||||
|
background-color: var(--secondary);
|
||||||
|
border-bottom: 0.1rem solid var(--borders);
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
padding: 1.5rem 0;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
font-size: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.items {
|
||||||
|
float: right;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
a {
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.moon,
|
||||||
|
.sun {
|
||||||
|
font-size: 2rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
margin-top: 0.25rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.moon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-theme='dark'] {
|
||||||
|
.sun {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.moon {
|
||||||
|
display: inline-block !important;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,56 @@
|
|||||||
|
.body {
|
||||||
|
border-top: 0.1rem solid var(--borders);
|
||||||
|
|
||||||
|
padding: 5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info,
|
||||||
|
.right {
|
||||||
|
font-size: 2rem;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:not(:last-child) {
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cover {
|
||||||
|
width: 50%;
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
margin: auto;
|
||||||
|
height: 20rem;
|
||||||
|
width: 20rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.cover,
|
||||||
|
.info {
|
||||||
|
width: 100%;
|
||||||
|
margin: 2rem 0;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
img {
|
||||||
|
height: 15rem;
|
||||||
|
width: 15rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
.body {
|
||||||
|
background: var(--secondary);
|
||||||
|
margin-top: 6rem;
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
padding: 7rem 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
height: 10rem;
|
||||||
|
width: 10rem;
|
||||||
|
margin: auto;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 4rem;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 4rem;
|
||||||
|
display: block;
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
font-size: 4rem;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.projects {
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
@ -1,7 +1,6 @@
|
|||||||
.page {
|
.page {
|
||||||
font-family: 'Raleway';
|
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
width: 100vw;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
@ -1,34 +0,0 @@
|
|||||||
.contact {
|
|
||||||
.header {
|
|
||||||
font-size: 4rem;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
// border-top: 0.1rem solid var(--borders);
|
|
||||||
padding-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
input,
|
|
||||||
textarea,
|
|
||||||
select {
|
|
||||||
border-color: var(--borders);
|
|
||||||
color: var(--foreground);
|
|
||||||
background-color: var(--secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.submit {
|
|
||||||
margin-top: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
font-family: 'Raleway';
|
|
||||||
|
|
||||||
#message {
|
|
||||||
resize: none;
|
|
||||||
height: 10rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-page {
|
|
||||||
height: 100vh;
|
|
||||||
|
|
||||||
padding-top: 10rem;
|
|
||||||
}
|
|
@ -1,33 +0,0 @@
|
|||||||
.footer {
|
|
||||||
background-color: var(--secondary);
|
|
||||||
border-top: 0.1rem solid var(--borders);
|
|
||||||
|
|
||||||
padding: 3rem;
|
|
||||||
|
|
||||||
font-family: 'Raleway';
|
|
||||||
|
|
||||||
.profile {
|
|
||||||
width: 5rem;
|
|
||||||
height: 5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.branding {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 2rem;
|
|
||||||
margin-left: 1rem;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.socials {
|
|
||||||
margin-left: 4rem;
|
|
||||||
display: inline-block;
|
|
||||||
height: 100%;
|
|
||||||
padding: 1rem 0;
|
|
||||||
|
|
||||||
.img {
|
|
||||||
height: 3rem;
|
|
||||||
width: 3rem;
|
|
||||||
margin-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
.landing {
|
|
||||||
background: var(--secondary);
|
|
||||||
margin-top: 6rem;
|
|
||||||
|
|
||||||
.container {
|
|
||||||
padding: 7rem 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile {
|
|
||||||
height: 10rem;
|
|
||||||
width: 10rem;
|
|
||||||
margin: auto;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
text-align: center;
|
|
||||||
font-family: 'Raleway';
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 4rem;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 4rem;
|
|
||||||
display: block;
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,47 +0,0 @@
|
|||||||
.navigation {
|
|
||||||
z-index: 1;
|
|
||||||
background-color: var(--secondary);
|
|
||||||
border-bottom: 0.1rem solid var(--borders);
|
|
||||||
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
font-family: 'Raleway';
|
|
||||||
padding: 1.5rem 0;
|
|
||||||
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
.header {
|
|
||||||
font-size: 1.75rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.items {
|
|
||||||
float: right;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
.moon {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dark-switch {
|
|
||||||
font-size: 2rem;
|
|
||||||
margin-left: 1rem;
|
|
||||||
margin-top: 0.25rem;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-theme='dark'] {
|
|
||||||
.sun {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.moon {
|
|
||||||
display: inline-block !important;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
.projects {
|
|
||||||
.header {
|
|
||||||
font-size: 4rem;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
font-family: 'Raleway';
|
|
||||||
margin-top: 3rem;
|
|
||||||
|
|
||||||
.project {
|
|
||||||
border-top: 0.1rem solid var(--borders);
|
|
||||||
|
|
||||||
padding: 5rem 0;
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
.info {
|
|
||||||
font-size: 2rem;
|
|
||||||
width: 50%;
|
|
||||||
|
|
||||||
.button:not(:last-child) {
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover {
|
|
||||||
width: 50%;
|
|
||||||
|
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin: auto;
|
|
||||||
height: 20rem;
|
|
||||||
width: 20rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.cover,
|
|
||||||
.info {
|
|
||||||
width: 100%;
|
|
||||||
margin: 2rem 0;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
img {
|
|
||||||
height: 15rem;
|
|
||||||
width: 15rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
.upload {
|
|
||||||
padding-top: 6rem;
|
|
||||||
}
|
|
Loading…
Reference in new issue