New layout
This commit is contained in:
91
htdocs.new/css/general.css
Normal file
91
htdocs.new/css/general.css
Normal file
@@ -0,0 +1,91 @@
|
||||
@font-face {
|
||||
font-family: "Digital Sans EF Medium";
|
||||
src: url('../fonts/Digital Sans EF Medium.ttf') format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DroidSans";
|
||||
src: url('../fonts/DroidSans.ttf') format("truetype");
|
||||
}
|
||||
|
||||
.digital {
|
||||
font-family: "Digital Sans EF Medium", sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--default-amount-color: #a5b3c0;
|
||||
--default-font-color: #c2c2c2;
|
||||
--default-font-size: 3vw;
|
||||
--default-header-color: #64aa82;
|
||||
--link-color: #436055;
|
||||
--link-font-size: 1.8vw;
|
||||
|
||||
font-size: var(--default-font-size);
|
||||
background-color: black;
|
||||
color: var(--default-font-color);
|
||||
font-family: "DroidSans", sans-serif;
|
||||
}
|
||||
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: auto;
|
||||
height: 100%;
|
||||
background: url('../images/background.jpg') no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: var(--default-header-color);
|
||||
font-size: 3.1vw;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3.1vw;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 3vw;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: var(--link-font-size);
|
||||
}
|
||||
a:link {
|
||||
color: var(--link-color);
|
||||
}
|
||||
a:visited {
|
||||
color: var(--link-color);
|
||||
}
|
||||
a:hover {
|
||||
color: var(--link-color);
|
||||
}
|
||||
a:active {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
.app-header {
|
||||
font-family: "Digital Sans EF Medium", sans-serif;
|
||||
color: var(--default-header-color);
|
||||
font-size: 4.5vw;
|
||||
margin: 0 20px 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.box {
|
||||
margin: 5px 10px 10px;
|
||||
padding: 5px;
|
||||
background-color: rgba(48, 46, 46, 0.7);
|
||||
border: 1px solid #484745;
|
||||
}
|
Reference in New Issue
Block a user