bde-liste/static/css/main.css

178 lines
2.7 KiB
CSS
Raw Normal View History

2022-12-20 20:43:14 +00:00
@import url('https://fonts.cdnfonts.com/css/modern-typewriter');
2022-12-11 14:30:42 +00:00
* {
box-sizing: border-box;
2022-12-11 14:49:41 +00:00
}
2022-12-11 14:30:42 +00:00
2022-12-11 14:49:41 +00:00
body {
font-family: 'MODERN TYPEWRITER', sans-serif;
2022-12-11 14:30:42 +00:00
font-size: medium;
2022-12-11 14:49:41 +00:00
color: black;
2022-12-20 23:00:56 +00:00
margin: 0;
2022-12-11 14:30:42 +00:00
}
2022-12-11 14:49:41 +00:00
h1 {
2022-12-15 13:30:34 +00:00
font-size: 60px;
2022-12-11 14:49:41 +00:00
font-weight: 900;
2022-12-12 16:44:58 +00:00
margin-top: 0px;
2022-12-11 14:49:41 +00:00
}
2022-12-12 16:44:58 +00:00
hr {
text-align: center;
border: none;
width: 200px;
margin-top: 0px;
margin-bottom: 0px;
}
hr::before {
content: url('../img/divider.svg');
}
2022-12-20 23:00:56 +00:00
img {
max-width: 100%;
height: auto
}
2022-12-15 13:30:34 +00:00
p {
font-size: 1.5vw;
font-weight: 300;
}
a {
text-decoration: none;
2022-12-20 20:32:11 +00:00
color: #d75b00;
2022-12-15 13:30:34 +00:00
}
2022-12-15 16:14:41 +00:00
2022-12-15 13:30:34 +00:00
a:hover {
text-decoration: underline;
cursor: pointer;
}
2022-12-20 23:00:56 +00:00
#wrapper {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 100%;
background: url('../img/spy-background.png');
background-size: cover;
overflow: scroll;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:00:56 +00:00
#container {
display: flex;
flex-direction: column;
position: absolute;
top: 40px;
width: calc(100% - 10vw);
2022-12-15 13:30:34 +00:00
height: auto;
2022-12-20 23:00:56 +00:00
padding: 4vw;
border-radius: 2px;
background: url("../img/background-letter.jpg");
background-size: cover;
2022-12-20 23:23:26 +00:00
background-position: right;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:00:56 +00:00
#logo {
display: flex;
justify-content: center;
height: 220px;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:17:37 +00:00
#logo > img {
width: 220px;
}
2022-12-15 13:30:34 +00:00
2022-12-20 23:00:56 +00:00
#timer {
font-size: 40px;
color: red;
text-align: center;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:00:56 +00:00
#spacer {
padding: 1px;
margin: 30px 0 30px 0;
background-color: #00000054;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:00:56 +00:00
.row-section {
display: flex;
flex-direction: row;
2022-12-15 13:30:34 +00:00
}
2022-12-20 23:00:56 +00:00
.column-section {
2022-12-11 14:49:41 +00:00
display: flex;
flex-direction: column;
2022-12-20 23:00:56 +00:00
flex-shrink: 1;
flex-basis: fit-content;
padding: 2vw
2022-12-11 14:49:41 +00:00
}
2022-12-20 23:00:56 +00:00
#prank-button {
2022-12-11 14:49:41 +00:00
display: flex;
flex-direction: column;
2022-12-20 23:00:56 +00:00
align-items: center;
padding: 30px 0 30px 0;
background: none;
}
#prank-button > span {
font-size: 25px;
}
#prank-button:hover{
background: url("../img/circle-hand.png");
background-size: 100% 100%;
2022-12-11 14:49:41 +00:00
}
2022-12-20 23:00:56 +00:00
#underline {
width: 350px;
height: 25px;
2022-12-11 14:49:41 +00:00
}
2022-12-20 23:00:56 +00:00
#login-page {
position: fixed;
display: none;
flex-direction: column;
width: 400px;
height: 400px;
2022-12-12 16:44:58 +00:00
}
2022-12-20 23:00:56 +00:00
.login-input {
}
@media screen and (max-width: 800px) {
#container {
padding: 2vw;
}
2022-12-20 20:40:44 +00:00
}
2022-12-15 13:30:34 +00:00
@media screen and (max-width: 600px) {
2022-12-20 23:00:56 +00:00
h1 {
font-size: 40px;
}
2022-12-20 23:14:36 +00:00
p {
font-size: 20px;
}
2022-12-20 23:00:56 +00:00
#wrapper{
background: none;
2022-12-20 20:43:14 +00:00
}
2022-12-20 23:00:56 +00:00
#container {
2022-12-20 20:40:44 +00:00
margin: 0px;
width: 100%;
2022-12-20 23:00:56 +00:00
top: 0;
2022-12-20 20:40:44 +00:00
border-radius: 0px;
box-shadow: none;
}
2022-12-20 23:00:56 +00:00
#logo {
2022-12-20 20:40:44 +00:00
height: 150px;
}
2022-12-20 23:17:37 +00:00
#logo > img {
width: 150px;
}
2022-12-20 23:00:56 +00:00
.row-section {
2022-12-20 20:32:11 +00:00
flex-direction: column;
2022-12-15 13:30:34 +00:00
}
}