ProxmoxAAS-Dashboard/css/style.css

75 lines
1.1 KiB
CSS
Raw Normal View History

2022-12-11 02:02:29 +00:00
body {
background-color:black;
}
2022-12-11 03:25:59 +00:00
h1, h2, h3, p {
2022-12-11 02:02:29 +00:00
font-family: monospace;
color: white;
}
h1 {
font-size: 72px;
text-align: center;
}
h2 {
font-size: 32px;
text-align: center;
}
h3 {
font-size: 24px;
text-align: center;
}
p {
font-size: 14px;
text-align: left;
}
@media screen and (min-width: 480px) {
2022-12-11 02:02:29 +00:00
.center-div {
min-width: 480px;
max-width: 50%;
width: min-content;
2022-12-11 02:02:29 +00:00
margin-left: auto;
margin-right: auto;
}
}
@media screen and (max-width: 480px) {
.center-div {
width: 100%;
margin-left: auto;
margin-right: auto;
}
}
2022-12-11 02:02:29 +00:00
.btn-group {
display: flex;
justify-content: center;
2022-12-12 04:44:21 +00:00
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
2022-12-11 02:02:29 +00:00
}
.btn-group button {
background-color: #00ff00; /* Green background */
color: black; /* White text */
padding: 10px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
border: none;
}
.btn-group button:hover {
background-color: #008800;
}
.btn-group button.active {
background-color: black;
color: white;
border: solid white 1px;
}
nav {
margin: 20px 0px 20px 0px;
2022-12-11 02:02:29 +00:00
}