startpage/public/style.css

58 lines
854 B
CSS
Raw Normal View History

2022-11-10 20:44:15 +01:00
body {
2023-02-05 18:06:25 +01:00
background-color: #303446;
color: #c6d0f5;
2022-11-10 20:44:15 +01:00
}
.outer {
display: table;
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 99.49%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
input[type=text] {
display: block;
margin: 0 auto;
width: 50%;
height: 40px;
padding: 20px 20px;
box-sizing: border-box;
border: none;
border-radius: 200px;
font-size: 10px;
2023-02-05 18:06:25 +01:00
background-color: #414559;
2022-11-10 20:44:15 +01:00
margin-bottom: 2%;
margin-top: -10%;
2023-02-05 18:06:25 +01:00
color: #c6d0f5;
2022-11-10 20:44:15 +01:00
}
.main {
display: block;
margin: auto;
width: fit-content;
2023-02-05 18:06:25 +01:00
border: 4px solid #414559;
2022-11-10 20:44:15 +01:00
}
.category {
display: inline-block;
padding: 10px;
vertical-align: top;
text-align: center;
}
.link {
display: block;
2023-02-05 18:06:25 +01:00
color: #b5bfe2;
2022-11-10 20:44:15 +01:00
}
a {
text-decoration: none;
}