InsulineSodarameme/css/style.css
2023-01-07 01:49:49 +01:00

100 lines
1.6 KiB
CSS
Executable File

:root {
color-scheme: light only;
}
html{
font-family: Arial, Helvetica, sans-serif;
background:black;
width:100%;
}
body{
display: grid;
width:100%;
grid-template-columns: 10vw 78.5vw 10vw;
grid-template-rows: auto auto auto;
grid-auto-rows: minmax(auto, auto);
background:linear-gradient(lightgray, #775cff);
}
@media only screen and (max-width: 850px) {
body {
grid-template-columns: 10vw 78vw 10vw;
}
}
@media only screen and (max-width: 550px) {
body {
grid-template-columns: 10vw 77vw 10vw;
}
}
main{
grid-column-start: 2;
grid-column-end: 2;
grid-row-start: 2;
grid-row-end: 2;
width: 100%;
z-index:3;
background:linear-gradient(rgb(189, 211, 255), rgb(55, 15, 141));
z-index:2;
min-height: 100%;
}
.pubG{
grid-column-start : 1;
grid-column-end: 1;
grid-row-start: 2;
grid-row-end: 2;
z-index:3;
margin:1%;
}
.pubG img{
top: 50%;
width:100%;
border-color: black;
border-width: 1px;
border-style: solid;
}
.pubD{
grid-column-start : 3;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 2;
z-index:3;
margin:1%;
}
.pubD img{
top: 50%;
width:100%;
border-color: black;
border-width: 1px;
border-style: solid;
}
footer {
font-size: 11px;
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 3;
grid-row-end: 3;
background:rgb(86, 85, 177);
bottom:100vh;
width:100%;
}
footer .divfooter{
float:left;
margin:3%;
}
footer img{
margin-left:10%;
}
form input{
background-color: rgba(255, 255, 255, 0.2);
border: solid;
border-radius: 15px;
}