manager/templates/common/common.css

101 lines
1.5 KiB
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;
2023-04-28 15:29:41 +00:00
padding-bottom: 0% !important;
2023-04-24 15:51:18 +00:00
}
.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;
2023-04-26 21:26:20 +00:00
font-size: 15px;
2023-04-24 15:51:18 +00:00
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);
}
2023-04-26 21:26:20 +00:00
.buttonReduce {
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: 13px;
color: white;
text-decoration: none;
-webkit-app-region: no-drag;
margin: 5px;
outline: none;
}
.buttonReduce:hover {
color: rgb(46, 196, 255);
}
.buttonReduce:active {
color: rgb(255, 255, 255);
}
2023-04-24 15:51:18 +00:00
header {
display: flex;
}
.content {
padding: 5%;
2023-04-28 15:29:41 +00:00
padding-top: 0;
2023-04-24 15:51:18 +00:00
}