manager/templates/common/common.css

145 lines
2.1 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 {
2023-04-29 21:23:37 +00:00
background-color: #171717 !important;
2023-04-24 15:51:18 +00:00
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-29 21:23:37 +00:00
color: white;
2023-05-03 18:47:04 +00:00
margin-bottom: 5px;
2023-04-24 15:51:18 +00:00
}
.top-logo {
width: 15%;
2023-05-03 18:47:04 +00:00
margin-left: 20px;
2023-04-24 15:51:18 +00:00
}
2023-05-02 18:40:55 +00:00
2023-04-24 15:51:18 +00:00
.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;
}
2023-05-03 18:47:04 +00:00
.top-title-image {
width: 80%;
margin-top: 6px;
margin-right: 20px;
margin-left: 4px;
}
2023-04-24 15:51:18 +00:00
.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
2023-05-01 21:39:49 +00:00
}
.buttonFav {
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: 0;
outline: none;
}
.buttonFav:hover {
color: rgb(242, 255, 53);
}
.buttonFav:active {
color: rgb(255, 255, 255);
}