Template:Etusivu/styles.css

From kubu
Revision as of 12:21, 31 July 2024 by Erland (talk | contribs)
Jump to navigationJump to search
body,html {background:red;}
.container {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: 1em 1em;
  grid-auto-flow: row;
  grid-template-areas:
    "aloita kubunopeasti"
    "nayttelyt ."
    ". problems";
}

.aloita { grid-area: aloita; }
.kubunopeasti  { grid-area: kubunopeasti; }
.nayttelyt { grid-area: nayttelyt; }
.problems { grid-area: problems; }
.container > div {
	background-color: #bfedff; /*#00b7ff40;*/
	border: 1px solid #00b7ff;
	border-radius: 10px;
	padding: 1.5em;
}
@media (max-width: 800px) {
	.container {
		grid-template-columns: 1fr;
		grid-template-areas:
	    "aloita" 
	    "kubunopeasti"
	    "nayttelyt"
	    "problems";
	}
}