added version

This commit is contained in:
DerTyp187
2021-11-10 15:44:11 +01:00
parent 3606b86c02
commit 643b0938c2
5 changed files with 107 additions and 5 deletions

View File

@@ -31,12 +31,14 @@ body header div{
body header div a{
letter-spacing: 1.5px;
padding-right: 30px;
padding-right: 10px;
padding-left: 10px;
cursor:pointer;
transition: 0.1s;
transition-timing-function: linear;
text-decoration: none;
font-weight: bold;
text-align: center ;
}
body header div .a-current{
@@ -49,8 +51,6 @@ body header div a:hover{
text-decoration: underline;
}
body main #main-content{
background-color: rgb(26, 26, 29);
width: 700px;
@@ -111,4 +111,54 @@ body main #main-content #list .list-item img{
height: 32px;
margin-left: 10px;
margin-top: -5px;
}
body main #main-content .note{
margin-top: 20px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
background-color: rgb(80, 83, 82);
}
body main #main-content .note p{
color: rgb(202, 202, 202);
font-size: 10pt;
}
#button-content{
height: 60px;
width: 100%;
display: block;
float:left;
margin-bottom: 20px;
}
#button-content div{
height: 60px;
width: 200px;
margin-left: 25px;
display: block;
float:left;
}
#button-content div a{
width: 100%;
display: block;
text-align: center;
font-size: 13pt;
font-weight: bold;
text-decoration: none;
padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(95, 255, 175, 0.1);
border: 5px solid rgb(34, 102, 71);
transition: 0.1s;
transition-timing-function: linear;
}
#button-content div a:hover{
background-color: rgba(137, 250, 194, 0.3);
border: 5px solid rgb(107, 255, 181);
}