You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.4 KiB
91 lines
1.4 KiB
/* getting colors from my Xresources */
|
|
:root {
|
|
--color0: #0F0F0F;
|
|
--color1: #b2564d;
|
|
--color2: #c39c74;
|
|
--color3: #7c60ba;
|
|
/* This ones are still unused */
|
|
--color4: #af6ec1;
|
|
--color5: #d7a4ab;
|
|
--color6: #bc6469;
|
|
--color7: #c7c3c3;
|
|
--color8: #594d4b;
|
|
--color9: #b2564d;
|
|
}
|
|
|
|
body{
|
|
margin: 0;
|
|
color: white;
|
|
background: var(--color0);
|
|
}
|
|
|
|
h1{font-size: 2em !important; color: var(--color3);}
|
|
p, a, li{font-size: 1.2em;}
|
|
a{text-decoration: none; color: var(--color2);}
|
|
a:hover{color: var(--color1)}
|
|
|
|
.flex-row{
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
header{
|
|
top: 0;
|
|
height: 30px;
|
|
position: fixed;
|
|
width: 100%;
|
|
background: var(--color1);
|
|
padding: 5px;
|
|
}
|
|
|
|
header a, header a:hover{
|
|
color: white;
|
|
}
|
|
|
|
#menu{
|
|
height: 100%;
|
|
width: 300px;
|
|
margin: 10px;
|
|
}
|
|
|
|
#menu a{
|
|
width: 33%;
|
|
height: 100%;
|
|
display: inline-block;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border-bottom: 3px double;
|
|
}
|
|
|
|
/* Only works with !important -.- */
|
|
#menu a:hover, .active{
|
|
border-bottom: 3px double var(--color2) !important;
|
|
}
|
|
#menu a:hover{
|
|
background: var(--color3);
|
|
}
|
|
|
|
#content{
|
|
margin-top:40px;
|
|
margin-left:3%;
|
|
padding: 10px;
|
|
width: 90%;
|
|
}
|
|
|
|
#content p{
|
|
text-align: justify;
|
|
}
|
|
|
|
#content h1{
|
|
text-align: center;
|
|
}
|
|
|
|
#me img{
|
|
display: block;
|
|
margin: 0 auto 0 auto;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
}
|
|
|