Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:KB-Consoles/styles.css: Difference between revisions

Template page
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
@media screen and (min-width: 851px) {
.container {
.container {
display: block;
  display: grid;  
text-align: left;
  grid-template-columns: 1fr 1fr;  
row-gap: 800px
  grid-template-rows: 1fr 1fr;
}
}
.image img {
max-width: 200px;
height: auto;
}
@media screen and (min-width: 851px) {
.container {
grid-template-columns: 1fr 1fr;
}
.section_a {
.section_a {
grid-row: 1;
grid-row: 1;
grid-column: 1;
}
}
.section_b {  
.section_b {  
grid-row: 2;  
grid-row: 1;
grid-column: 2;  
}
}
.section_c {  
.section_c {  
grid-row: 3;  
grid-row: 2;
grid-column: 1;  
}
}
.section_d {  
.section_d {  
grid-row: 4;  
grid-row: 2;
grid-column: 2;  
}
}
}
}