mirror of
https://git.ikl.sh/132ikl/liteshort.git
synced 2023-08-10 21:13:04 +03:00
Add fallback font to styles
This commit is contained in:
parent
32f6fbcde7
commit
9c3a0eca6b
@ -6,65 +6,65 @@ A copy of the MIT license can be obtained at https://mit-license.org/
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
input {
|
input {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.form {
|
div.form {
|
||||||
margin-top: 5%;
|
margin-top: 5%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.success {
|
div.success {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-family: Open Sans;
|
font-family: Open Sans, sans-serif;
|
||||||
border-radius: 2vh;
|
border-radius: 2vh;
|
||||||
padding: 2vh;
|
padding: 2vh;
|
||||||
color: #62ad2c;
|
color: #62ad2c;
|
||||||
background-color: #E9FFD9;
|
background-color: #E9FFD9;
|
||||||
border: 1px solid #62ad2c;
|
border: 1px solid #62ad2c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
div.error {
|
div.error {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-family: Open Sans;
|
font-family: Open Sans, sans-serif;
|
||||||
border-radius: 2vh;
|
border-radius: 2vh;
|
||||||
padding: 2vh;
|
padding: 2vh;
|
||||||
color: #a86464;
|
color: #a86464;
|
||||||
background-color: #FCE9E9;
|
background-color: #FCE9E9;
|
||||||
border: 1px solid #a86464;
|
border: 1px solid #a86464;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
text-align: center
|
text-align: center
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-family: Open Sans;
|
font-family: Open Sans, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.success > a:link {
|
div.success>a:link {
|
||||||
color: #62ad2c;
|
color: #62ad2c;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.success > a:visited {
|
div.success>a:visited {
|
||||||
color: #507c52;
|
color: #507c52;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.github {
|
div.github {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
transition: opacity .25s ease-out;
|
transition: opacity .25s ease-out;
|
||||||
-moz-transition: opacity .25s ease-out;
|
-moz-transition: opacity .25s ease-out;
|
||||||
-webkit-transition: opacity .25s ease-out;
|
-webkit-transition: opacity .25s ease-out;
|
||||||
-o-transition: opacity .25s ease-out;
|
-o-transition: opacity .25s ease-out;
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
right: 2.5vw;
|
right: 2.5vw;
|
||||||
bottom: 15vh;
|
bottom: 15vh;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.github:hover {
|
div.github:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user