oysteikt-homepage/style.css

73 lines
791 B
CSS

/* Dark theme with orange titles */
body {
background-color: #242323;
color: #fff;
margin: 5vh 33%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #fe934b;
}
a {
color: #fe934b;
}
.link-box {
display: flex;
}
.link {
flex-grow: 1;
color: #242323;
transition: all 0.1s;
text-align: center;
padding: 2px;
text-decoration: none;
}
.link:hover {
transform: scale(1.1);
}
/* monokai */
.red {
background-color: #f92672;
}
.green {
background-color: #a6e22e;
}
.blue {
background-color: #66d9ef;
}
.yellow {
background-color: #e6db74;
}
.page-divide {
display: flex;
gap: 10px;
}
.half-text {
flex-grow: 2;
padding: 10px;
}
.half-pic {
flex-grow: 1;
width: 100%;
height: 100%;
object-fit: cover;
border: 1vh solid #fe934b;
border-radius: 8%;
}