InsulineSodarameme/css/style.css

100 lines
1.7 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-06 20:35:34 +01:00
grid-template-columns: 10vw 78.5vw 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-06 20:35:34 +01:00
@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;
}
}
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%;
z-index:3;
2023-01-06 17:16:30 +01:00
background:linear-gradient(rgb(189, 211, 255), rgb(55, 15, 141));
z-index:2;
min-height: 100%;
2023-01-04 18:10:14 +01:00
}
2023-01-06 17:16:30 +01:00
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;
2023-01-06 20:35:34 +01:00
margin:1%;
2023-01-04 18:10:14 +01:00
}
2023-01-06 20:35:34 +01:00
.pubD img{
margin-top: 50%;
width:100%;
border-color: black;
border-width: 1px;
border-style: solid;
2023-01-04 18:10:14 +01:00
}
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
}