You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

198 lines
3.2 KiB
CSS

@font-face {
font-family: klartext mono bold;
src: url("fonts/Klartext Mono Bold.ttf");
}
@font-face {
font-family: PropCourierSans;
src: url("fonts/PropCourierSans.ttf");
}
.header {
padding: 5px;
background: rgb(255, 0, 255);
}
* {
box-sizing: border-box;
}
h1 {
text-align: right;
color: rgb(69, 48, 105);
font-size: 40px;
font-style: normal;
letter-spacing: 0px;
text-transform: none;
font-family: klartext mono bold;
margin-right: 20px;
}
html, body {
height: 100%;
}
body {
/*
display: flex;
flex-direction: column;
*/
margin: 0px;
}
html {
background: url('images/background-image.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.container-screen {
flex-grow: 1;
flex-shrink: 1;
min-height: 0;
display: flex;
flex-direction: row;
}
.resizable-panel {
border-top: 12px solid rgb(255, 0, 255);
padding: 20px 15px 10px 30px;
margin: 40px 40px 20px;
width: 400px;
/*max-height: 670px;*/
resize: horizontal;
overflow: auto;
background: rgb(255, 255, 255);
flex-grow: 0;
flex-shrink: 0;
}
.constellation {
flex-grow: 1;
flex-shrink: 1;
border: solid 5px #000;
padding: 20px;
font-size: 140%;
font-weight: bold;
font-family: sans-serif;
}
.star-coding {
border-radius: 50%;
width: 70px;
height: 70px;
background: white;
border-color: magenta;
border-style: solid;
background-image: url(images/code-logo.png);
background-repeat: no-repeat, repeat;
background-position: center;
background-size: 45px;
border-width: 5px;
margin: 20px;
}
.star-radio {
border-radius: 50%;
width: 70px;
height: 70px;
background: white;
border-color: magenta;
border-style: solid;
background-image: url(images/radio-logo.png);
background-repeat: no-repeat, repeat;
background-position: center;
background-size: 60px;
border-width: 5px;
margin: 20px;
}
.star-servers {
border-radius: 50%;
width: 70px;
height: 70px;
background: white;
border-color: magenta;
border-style: solid;
background-image: url(images/servers-logo.png);
background-repeat: no-repeat, repeat;
background-position: center;
background-size: 45px;
border-width: 5px;
margin: 20px;
}
.star-conversation {
border-radius: 50%;
width: 70px;
height: 70px;
background: white;
border-color: magenta;
border-style: solid;
background-image: url(images/conversation-logo.png);
background-repeat: no-repeat, repeat;
background-position: center;
background-size: 45px;
border-width: 5px;
margin: 20px;
}
@media screen and (max-width: 992px) {
.resizable-panel {
margin-left: 50px;
margin-right: 50px;
width: auto;
}
}
p {
display: flex;
text-align: left;
font-family: PropCourierSans;
font-weight: 550;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align: center;
font-family: PropCourierSans;
font-weight: 600;
background: rgb(57, 42, 83);
padding: 20px;
}
.column {
padding: 5px;
flex-grow: 1;
flex-shrink: 1;
color: rgb(255, 255, 255);
}
@media screen and (max-width: 500px) {
.column {
min-width: 16%;
}
}
@media screen and (max-width: 300px) {
.column {
min-width: 25%;
}
}
.content {
/*
flex: 1 0 auto;
*/
}
.footer {
/*
flex-shrink: 0;
*/
}