Files
release11-tools/Frontend/assets/css/frame.css
2023-02-14 14:53:07 +01:00

101 lines
1.6 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');
html {
background-image: url("../images/background.jpg");
}
body {
font-family: 'Nunito', sans-serif;
color: #2e3133;
font-weight: normal;
margin: 0px;
}
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
min-height: 100%;
}
div#header {
background-color: transparent;
width: 100%;
height: 80px;
backdrop-filter: blur(10px);
}
#logo {
padding: 20px 20px 20px;
max-width: 250px;
}
iframe#frame {
flex-grow: 1;
background-color: #FFFFFF;
}
div#content {
width: 100%;
height: calc(100% - 80px);
display: flex;
backdrop-filter: blur(10px);
}
div#toolList {
float: left;
width: 200px;
background-color: transparent;
height: 100%;
}
li {
font-size: 20px;
font-weight: bold;
}
div#copyright{
color:rgb(192, 192, 192);
position: fixed;
bottom: 10px;
width: 200px;
text-align: center;
}
div#copyright a, a:visited, a:active {
color: rgb(192, 192, 192);
}
ul#toolList {
list-style-type: none;
margin: 0;
padding: 10px 0 0 0;
overflow: hidden;
display: block;
float: left;
background-color: transparent;
width: 100%;
height: calc(100% - 80px);
backdrop-filter: blur(10px);
}
#toolListRow a {
display: block;
color: white;
text-align: center;
padding: 20px 50px 25px;
text-decoration: none;
}
#toolListRow a:hover {
background-color: #2A93B0;
color: white;
transform: scale(1.25, 1.25);
transition-duration: .3s;
}