1
0

ASP.NET version start

This commit is contained in:
Michael Gordeev
2019-10-10 19:12:54 +03:00
parent def2b51164
commit 3ec8522eb5
56 changed files with 33139 additions and 0 deletions
+105
View File
@@ -0,0 +1,105 @@
@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");
}
@font-face {
font-family: 'Segoe UI';
src: url("/fonts/segoeUI.eot");
src: url("/fonts/segoeUI.eot?#iefix") format("embedded-opentype"), url("/fonts/segoeUI.otf") format("opentype"), url("/fonts/segoeUI.svg") format("svg"), url("/fonts/segoeUI.ttf") format("truetype"), url("/fonts/segoeUI.woff") format("woff"), url("/fonts/segoeUI.woff2") format("woff2");
}
body {
margin: 0px;
font-family: Consolas, 'Segoe MDL2 Assets';
}
.navbar {
background-color: #343434;
position: fixed;
z-index: 10;
top: 0%;
right: 0%;
left: 0%;
padding: 10px;
min-height: 35px;
font-size: 26px;
}
.navbar a {
text-decoration: none;
color: white;
}
.navbar a:hover {
color: gray;
}
.main-menu {
display: inline;
list-style: none;
}
.main-menu li {
display: inline-block;
font-size: 20px;
margin-right: 20px;
}
.sideheader {
float: right;
}
body {
padding-top: 55px;
}
footer {
padding-left: 10px;
}
main {
min-height: calc(100vh - 130px);
}
.info-block {
margin-left: 50px;
}
header {
margin-left: 50px;
}
header a {
text-decoration: none;
color: black;
}
header a:hover {
color: black;
text-decoration: underline;
}
.image-overview-block img {
max-height: 50vh;
float: left;
display: inline;
}
.image-overview-block div {
margin: 10px;
display: inline-block;
}
.image-overview-block div h1 {
margin-bottom: 0px;
}
.image-overview-block .date {
margin: 0px;
}
article a:visited {
color: blue;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1021 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 783 KiB

Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

+8
View File
@@ -0,0 +1,8 @@
function ToggleImageSize() {
var image = document.getElementById("image");
if (image.style.maxHeight == "none")
image.style.maxHeight = "50vh";
else
image.style.maxHeight = "none";
}
View File