Refactoring 1
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
@font-face {
|
||||
font-family: 'Consolas';
|
||||
src: url("/fonts/consolas.eot");
|
||||
src: url("/fonts/consolas.eot?#iefix") format("embedded-opentype"), url("/fonts/consolas.otf") format("opentype"), url("/fonts/consolas.svg") format("svg"), url("/fonts/consolas.ttf") format("truetype"), url("/fonts/consolas.woff") format("woff"), url("/fonts/consolas.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Segoe MDL2 Assets';
|
||||
src: url("/fonts/segoeMLD2assets.eot");
|
||||
src: url("/fonts/segoeMLD2assets.eot?#iefix") format("embedded-opentype"), url("/fonts/segoeMLD2assets.otf") format("opentype"), url("/fonts/segoeMLD2assets.svg") format("svg"), url("/fonts/segoeMLD2assets.ttf") format("truetype"), url("/fonts/segoeMLD2assets.woff") format("woff"), url("/fonts/segoeMLD2assets.woff2") format("woff2");
|
||||
}
|
||||
|
||||
/*Header styles*/
|
||||
.navbar {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr auto auto;
|
||||
grid-column-gap: 10px;
|
||||
grid-template-rows: auto auto;
|
||||
background-color: #343434;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
padding: 10px;
|
||||
min-height: 33px;
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.navbar a {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
.navbar a:hover {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.main-menu {
|
||||
margin: 26px auto 26px auto;
|
||||
grid-row: 2;
|
||||
list-style: none;
|
||||
}
|
||||
.main-menu li {
|
||||
font-size: 20px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.language-switch {
|
||||
grid-column: 3;
|
||||
user-select: none
|
||||
}
|
||||
.menu-toggle {
|
||||
grid-column: 4;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/*Footer styles*/
|
||||
footer {
|
||||
padding: 10px;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: 1fr auto auto auto;
|
||||
grid-column-gap: 10px;
|
||||
}
|
||||
footer a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
footer a:hover {
|
||||
color: orangered;
|
||||
}
|
||||
|
||||
/*Body styles*/
|
||||
body {
|
||||
margin: 0px;
|
||||
margin-top: 53px;
|
||||
font-family: Consolas, 'Segoe MDL2 Assets';
|
||||
|
||||
/*This stuff is necessary for sticky footer*/
|
||||
display: grid;
|
||||
grid-template-rows: 1fr auto;
|
||||
height: calc(100vh - 53px);
|
||||
}
|
||||
|
||||
header a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
header a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
article, header {
|
||||
margin: 0px 50px;
|
||||
}
|
||||
|
||||
article a:visited, article a:link {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.comment, .comment:visited {
|
||||
color: #57a64a;
|
||||
}
|
||||
|
||||
/*Adaptive code*/
|
||||
@media only screen and (min-width: 1000px) {
|
||||
.main-menu {
|
||||
display: initial !important;
|
||||
grid-row: 1;
|
||||
grid-column: 2;
|
||||
margin: 0px;
|
||||
}
|
||||
.main-menu li {
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user