manager/templates/common/app.css

72 lines
984 B
CSS
Raw Normal View History

2023-04-24 15:51:18 +00:00
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
body {
background-color: #92bcea !important;
font-family: 'Open Sans', sans-serif !important;
}
.top-title {
display: flex;
font-size: medium;
vertical-align: center;
justify-content: center;
-webkit-user-select: none;
-webkit-app-region: drag;
width: 100%;
padding: 5% !important;
}
.top-logo {
width: 15%;
}
.buttonClose {
background-color: transparent;
border: none;
border-radius: 15px;
cursor: pointer;
transition: all 0.3s ease 0s;
font-family: 'noto Sans', sans-serif;
font-weight: 500;
font-size: 30px;
color: white;
text-decoration: none;
-webkit-app-region: no-drag;
margin: 5px;
outline: none;
}
.buttonClose:hover {
color: red;
}
.buttonClose:active {
color: rgb(255, 255, 255);
}
header {
display: flex;
}
.content {
padding: 5%;
}