This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
iprefua/style.less

59 řádky
813 B
Plaintext
Executable File

@bg: #2a2a2a;
@text-info: #9DA3B0;
@text: white;
@link-color: white;
@main-color: red;
.text-info {
color: @text-info;
font-size: 18px;
}
::selection {
color: @bg;
background-color: @text;
}
section {
margin-top: 40px;
margin-bottom: 40px;
}
a {
text-decoration: underline;
color: @link-color;
transition: all 0.1s linear;
&:hover {
text-decoration: none;
color: @main-color;
}
}
body {
text-align: center;
font-family: "Ubuntu", sans-serif;
padding: 0px;
margin: 20px;
background-color: @bg;
color: @text;
font-size: 30px;
}
samp {
display: inline;
font-family: "Ubuntu Mono", monospace;
font-size: 100%;
letter-spacing: normal;
overflow-wrap: break-word;
}
.samp-wrapper {
margin-top: 20px;
margin-bottom: 20px;
padding: 10px;
padding-left: 15px;
padding-right: 15px;
}