Files
Stone-Red-Code.github.io/style.css
T
2021-01-04 01:58:04 +01:00

94 lines
1.1 KiB
CSS

:root
{
--fg-theme: gray;
}
.header {
background: url("Images/code.png");
height: 100px;
background-size: auto;
background-position: top;
}
.fg-theme {
background-color: var(--fg-theme);
}
body {
background-color: #40444B;
}
h1 {
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
word-wrap: break-word;
}
h2 {
word-wrap: break-word;
}
h3 {
color: white;
word-wrap: break-word;
}
.contact>p {
color: white;
padding-left: 10px;
}
.navbar-light .navbar-nav .nav-link {
font-size: 19px;
color: black;
}
a:link {
color: gray;
text-decoration: underline;
}
/* visited link */
a:visited {
color: gray;
}
/* mouse over link */
a:hover {
color: rgb(0, 0, 0);
}
/* selected link */
a:active {
color: rgb(180, 180, 180);
}
.nav-link
{
text-decoration: var(--fg-theme);
}
@media screen and (max-width: 768px) {
h2 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
.stats {
display: none;
}
}
@media screen and (max-width: 360px)
{
h1{
font-size: 30px;
}
.mostUsedLangs {
display: none;
}
}