InsulineSodarameme/css/style.css

89 lines
1.4 KiB
CSS
Raw Normal View History

2023-01-04 18:10:14 +01:00
2023-01-05 23:58:16 +01:00
:root {
color-scheme: light only;
}
2023-01-04 18:10:14 +01:00
html{
font-family: Arial, Helvetica, sans-serif;
background:black;
width:100%;
}
body{
display: grid;
width:100%;
2023-01-05 20:52:06 +01:00
grid-template-columns: 10vw 80vw 10vw;
2023-01-04 18:10:14 +01:00
grid-template-rows: auto auto auto;
grid-auto-rows: minmax(auto, auto);
2023-01-05 20:52:06 +01:00
background:linear-gradient(lightgray, #775cff);
2023-01-04 18:10:14 +01:00
}
2023-01-05 20:52:06 +01:00
main{
grid-column-start: 2;
grid-column-end: 2;
grid-row-start: 2;
grid-row-end: 2;
width: 100%;
background: rgba(255, 0, 0, 0.1);
z-index:3;
2023-01-04 18:10:14 +01:00
}
.pubG{
grid-column-start : 1;
grid-column-end: 1;
grid-row-start: 2;
grid-row-end: 2;
z-index:3;
2023-01-05 20:52:06 +01:00
margin:1%;
2023-01-04 18:10:14 +01:00
}
2023-01-05 23:52:59 +01:00
.pubG img{
margin-top: 50%;
width:100%;
2023-01-05 23:58:16 +01:00
border-color: black;
2023-01-06 12:21:53 +01:00
border-width: 1px;
border-style: solid;
2023-01-05 23:52:59 +01:00
}
2023-01-04 18:10:14 +01:00
.pubD{
grid-column-start : 3;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 2;
z-index:3;
background-color: green;
}
2023-01-05 20:52:06 +01:00
2023-01-04 18:10:14 +01:00
@media only screen and (max-width: 600px) {
main {
width:100%;
background: none;
}
}
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;
2022-12-15 17:42:13 +01:00
}