mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2026-01-27 10:23:15 +00:00
171 lines
2.8 KiB
CSS
171 lines
2.8 KiB
CSS
body {font-family: Arial, Helvetica, sans-serif;}
|
|
|
|
input[type=text], input[type=password] {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
background-color: #04AA6D;
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
|
|
button:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.logo-grid {
|
|
display: grid;
|
|
grid-template-columns: 20% 60% 20%;
|
|
margin-top: calc(10vh)
|
|
}
|
|
|
|
.logo-grid > div > img {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 200px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
|
|
.info-card {
|
|
padding: 30px;
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
|
|
display: block;
|
|
width: 50%;
|
|
min-width: 400px;
|
|
border: 1em;
|
|
background-color: white;
|
|
width: 40%;
|
|
height: auto;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: auto;
|
|
margin-top: 50px;
|
|
position: relative;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.info-list {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
.info-title {
|
|
margin-left: 5%;
|
|
color: #63B3ED;
|
|
}
|
|
|
|
.flex-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: left;
|
|
align-items: center;
|
|
margin-left: 5%;
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
min-height: 30px
|
|
}
|
|
|
|
.flex-box > h3 {
|
|
margin-right: 4px;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.container {
|
|
padding: 16px;
|
|
}
|
|
|
|
span.password1 {
|
|
float: right;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
body {
|
|
background-color: #ebedef;
|
|
}
|
|
|
|
/* Change styles for span and cancel button on extra small screens */
|
|
@media screen and (max-width: 300px) {
|
|
span.password1 {
|
|
display: block;
|
|
float: none;
|
|
}
|
|
.cancelbtn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.form-container {
|
|
border: 0px;
|
|
margin-left: 5%;
|
|
}
|
|
|
|
.form-label {
|
|
float: left;
|
|
}
|
|
|
|
.form-input {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.form-control {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.form-submit-btn {
|
|
display: inline-flex;
|
|
appearance: none;
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
-webkit-user-select: none;
|
|
position: relative;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
outline-color: transparent;
|
|
outline-style: solid;
|
|
outline-width: 2px;
|
|
outline-offset: 2px;
|
|
line-height: 1.2;
|
|
border-top-left-radius: 15px;
|
|
border-top-right-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
border-bottom-left-radius: 15px;
|
|
height: 45px;
|
|
background-color:#4299E1;
|
|
font-size: 15px;
|
|
padding-inline-start: 16px;
|
|
padding-inline-end: 16px;
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
color: white;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.footer{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: left;
|
|
align-items: center;
|
|
margin-left: 5%;
|
|
}
|
|
|
|
hr.rounded {
|
|
margin-top: 40px;
|
|
margin-bottom: 0px;
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
border-top: 1px solid #bbb;
|
|
border-radius: 5px;
|
|
} |