1
0

1st commit

This commit is contained in:
Michael Gordeev
2019-04-26 23:16:16 +03:00
parent 18779668cd
commit 70c9f4ee0e
22 changed files with 289 additions and 0 deletions
+122
View File
@@ -0,0 +1,122 @@
.contacts {
background-color: #1e1e1e;
}
body {
margin: 0px;
}
.goto {
background-color: #1e1e1e;
color: #dcdcdc;
float: right;
border-radius: 5px;
position: fixed;
right: 10px;
bottom: 10px;
font-size: 14px;
padding: 5px;
height: 15px;
width: 110px;
transition: .5s;
font-family: Consolas;
}
.goto:hover {
height: 87px;
width: 150px;
}
.list {
float: right;
opacity: 0;
}
.goto:hover .list {
opacity: 1;
}
.currentItem {
float: right;
}
.goto:hover .currentItem {
display: none;
}
.goto .keyword {
opacity: 0;
bottom: 15px;
float: left;
position: fixed;
}
.goto:hover .keyword {
opacity: 1;
}
.goto a:link {
color: #dcdcdc;
text-decoration: none;
}
.goto a:hover {
color: #569cd6;
text-decoration: underline;
}
.goto a:visited {
color: #dcdcdc;
text-decoration: none;
}
.contacts div {
font-family: Consolas;
font-size: 14px;
margin: 20px;
color: #dcdcdc;
display: inline-block;
}
.regString {
color: #d69d85;
text-decoration: none;
}
.string:link {
color: #d69d85;
text-decoration: none;
}
.string:visited {
color: #d69d85;
text-decoration: none;
}
.string:hover {
color: #569cd6;
text-decoration: underline;
}
.type {
color: #4ec9b0;
}
.keyword {
color: #569cd6 !important;
}
.codeLinks:link {
text-decoration: none;
color: white;
}
.codeLinks:visited {
text-decoration: none;
color: white;
}
.codeLinks:hover {
color: #569cd6;
text-decoration: underline;
}
.comment {
color: 57a64a;
}
.linesNum {
color: #2b91af !important;
}
.intro {
background-color: #00a7dc;
}