{url}+/ now display grid of 6 random images , first changes every 5 sec
Co-authored-by: Avior <github@avior.me>
This commit is contained in:
37
css/index.css
Normal file
37
css/index.css
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
h1.string{
|
||||
color: red;
|
||||
font-size: 150px
|
||||
}
|
||||
.board {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 10px;
|
||||
grid-auto-rows: minmax(100px, auto);
|
||||
background-color : #e012f384
|
||||
}
|
||||
div.row11 {
|
||||
grid-column : 1;
|
||||
grid-row : 1
|
||||
}
|
||||
div.row12 {
|
||||
grid-column: 2;
|
||||
grid-row: 1
|
||||
}
|
||||
div.row13 {
|
||||
grid-column : 3;
|
||||
grid-row : 1
|
||||
}
|
||||
div.row21 {
|
||||
grid-column : 1;
|
||||
grid-row : 2
|
||||
}
|
||||
div.row22 {
|
||||
grid-column : 2;
|
||||
grid-row : 2
|
||||
}
|
||||
div.row23 {
|
||||
grid-column : 3;
|
||||
grid-row : 2
|
||||
}
|
||||
|
Reference in New Issue
Block a user