126 lines
2.0 KiB
CSS
126 lines
2.0 KiB
CSS
@font-face{
|
|
font-family: "eurostile_extended_black";
|
|
src: url("eurostile_extended_black.ttf") format("truetype");
|
|
}
|
|
|
|
* {
|
|
font-family: "eurostile_extended_black";
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 90%;
|
|
}
|
|
|
|
.eupui {
|
|
display: none;
|
|
}
|
|
|
|
.department-container {
|
|
width: fit-content;
|
|
height: 10%;
|
|
border: 2px solid #006EFF;
|
|
background-color: #232426;
|
|
color: white;
|
|
margin: auto;
|
|
margin-top: 5px;
|
|
overflow: hidden;
|
|
padding: 14px 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.department {
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.buttons {
|
|
margin: auto;
|
|
text-align: center;
|
|
margin-top: 37%;
|
|
}
|
|
|
|
.img {
|
|
height: 6%;
|
|
width: 6%;
|
|
}
|
|
|
|
.name {
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.departments {
|
|
position: absolute;
|
|
top: 0.5%;
|
|
left: 0.5%;
|
|
overflow-x: none;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#name {
|
|
display: inline-block;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
font-size: 20px;
|
|
text-decoration: none;
|
|
border: none;
|
|
border: 2px solid #006EFF;
|
|
background-color: #232426;
|
|
border-top-left-radius: 15px;
|
|
border-top-right-radius: 15px;
|
|
}
|
|
|
|
.buttons button {
|
|
display: inline-block;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
font-size: 20px;
|
|
text-decoration: none;
|
|
border: none;
|
|
border: 2px solid #006EFF;
|
|
background-color: #232426;
|
|
}
|
|
|
|
button:hover {
|
|
color: #006EFF;
|
|
}
|
|
|
|
button:active {
|
|
opacity: 0.5;
|
|
transition: 0s;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline:none;
|
|
border: 2px solid #006EFF;
|
|
}
|
|
|
|
button:focus {
|
|
border: none;
|
|
outline:none;
|
|
border: 2px solid #006EFF;
|
|
}
|
|
|
|
.helmets {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0.5%;
|
|
right: 0.5%;
|
|
overflow-x: none;
|
|
overflow-y: auto;
|
|
}
|