css rework
This commit is contained in:
parent
c54bafaf2b
commit
e2cdbc55fa
5 changed files with 165 additions and 0 deletions
29
home.css
Normal file
29
home.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
#home_page_content{
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
grid-template-areas:
|
||||
"head open"
|
||||
"qual book";
|
||||
grid-template-columns: 3fr 1fr;
|
||||
}
|
||||
|
||||
#times{
|
||||
text-align: center;
|
||||
grid-area: open
|
||||
}
|
||||
|
||||
#head{
|
||||
grid-area: head;
|
||||
}
|
||||
|
||||
#qual{
|
||||
grid-area: qual
|
||||
}
|
||||
|
||||
#book{
|
||||
grid-area: book;
|
||||
}
|
||||
|
||||
@media screen and (max-width:1000px){
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue