Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.191.192.250
Current Path : /var/www/html/oums/ |
| Current File : /var/www/html/oums/index.css |
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
border: 1px solid #ccc;
-webkit-text-fill-color: #000;
background-color: white;
transition: background-color 5000s ease-in-out 0s;
}
* {
box-sizing: border-box;
}
body,
html {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background-color: aliceblue;
}
.head_logo {
grid-area: head_logo;
text-align: left;
padding: 5px;
/* border: 1px solid #ccc; */
}
.head_vers {
grid-area: head_vers;
text-align: right;
padding: 5px;
/* border: 1px solid #ccc; */
}
.head_name {
grid-area: head_name;
text-align: center;
padding: 5px;
border-bottom: 1px solid #ccc;
grid-column: 1 / span 2;
color: #0099cc;
font-size: 22px;
}
.main_sect {
grid-area: main_sect;
text-align: center;
padding: 50px 10px;
/* border: 1px solid #ccc; */
grid-column: 1 / span 2;
}
.foot_sect {
grid-area: foot_sect;
text-align: center;
padding: 5px;
border-top: 1px solid #ccc;
grid-column: 1 / span 2;
font-size: 15px;
}
.grid-container {
display: grid;
grid-template-areas:
/* "head_logo head_vers" */
"head_name head_name"
"main_sect main_sect"
/* "foot_sect foot_sect" */
;
min-height: 100%;
max-height: 100%;
grid-template-rows: auto auto auto;
grid-template-columns: auto auto;
}
|