basic structure created

This commit is contained in:
2025-12-31 20:42:21 +10:00
parent 63af3ed7b4
commit 4ab5967abe
6 changed files with 204 additions and 0 deletions

40
hw/hw7/hw7.css Normal file
View File

@@ -0,0 +1,40 @@
.desctription-heading{
display: block;
justify-self: center;
grid-area: 1/12/ 1 / 1;
}
.scheme-image{
grid-area: 2/1/6/5;
width: 100%;
}
.inputs{
grid-area: 2/5/3/6;
min-width: 300px;
max-width: 300px;
}
.outputs{
grid-area: 3/5/4/6;
min-width: 300px;
max-width: 300px;
}
.radio-label{
display: inline-block;
}
p{
line-height: 0;
}
.max-w{
width: 80%;
}
.hidden{
display: none;
}
body{
display: grid;
gap: 20px;
grid-template-columns: repeat(12,1fr);
grid-template-rows:repeat(6,min-content) ;
}