Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions src/styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,11 @@ h3 a:hover {
padding-left: 1.5vw;
font-family: "Montserrat Bold";
}
@media (max-width: 768px) {
.card-title{
font-size: 2.5vh;
}
}

.card-author {
font-size: 0.9vw;
Expand All @@ -315,6 +320,11 @@ h3 a:hover {
padding-left: 1.5vw;
font-family: "Montserrat Bold";
}
@media (max-width: 768px) {
.card-author{
font-size: 1.7vh;
}
}
/* clamp styles */
.clamp-lines {
border-radius: 0.25em;
Expand All @@ -325,6 +335,11 @@ h3 a:hover {
padding-top: 1vh;
font-size: 0.8vw;
}
@media (max-width: 768px) {
.clamp-lines{
width: 1.1vw;
}
}

.clamp-lines > span {
display: block;
Expand All @@ -349,6 +364,11 @@ h3 a:hover {
height: 22vh;
/* filter: blur(3px); */
}
@media (max-width: 768px) {
.cardimage img{
width: 35vh;
}
}
.cardimage:hover {
filter: none;
}
Expand All @@ -358,12 +378,18 @@ h3 a:hover {
height: 22vh;
overflow: hidden;
}

.bigcard {
width: 20vw;
margin-bottom: 25px;
margin-right: 8px;
margin-left: 8px;
}
@media (max-width: 768px) {
.bigcard{
width: 35vh;
}
}
.row {
width: 100%;
display: flex;
Expand Down Expand Up @@ -603,6 +629,11 @@ h3 a:hover {
text-align: center;
height: 6vh;
}
@media (max-width: 768px) {
.img-description-text{
width: 1vh;
}
}
/* ARCHIVE PAGE */

#intro2019 h1 {
Expand Down Expand Up @@ -902,6 +933,12 @@ h1.tenpx {
width: 10vw;
font-size: 1vw;
}
@media (max-width: 768px) {
.box{
width: 17.5vh;
font-size: 1.8vh;
}
}
.links a:first-child {
border: #ff2457;

Expand All @@ -926,6 +963,11 @@ h1.tenpx {
white-space: nowrap;
width: 20vw;
}
@media (max-width: 768px) {
.tags{
width: 35vh;
}
}
.tags ul {
list-style: none;
display: inline-block;
Expand Down