You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
792 B
47 lines
792 B
3 months ago
|
/* This stylesheet is for the layout of both the homepage and the various subject pages */
|
||
|
|
||
|
/* .main_grid {
|
||
|
display: grid;
|
||
|
grid-template-rows: 24% 24% 24% 24%;
|
||
|
grid-template-columns: 24% 24% 24% 24%;
|
||
|
background-color: red;
|
||
|
grid-gap: 20px;
|
||
|
} */
|
||
|
|
||
|
#homebody {
|
||
|
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Montserrat", sans-serif;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
background-image: url("/images/lemon.jpg");
|
||
|
background-size: 50%;
|
||
|
bacground-color: black;
|
||
|
background-repeat: repeat;
|
||
|
background-position: center;
|
||
|
text-align: center;
|
||
|
margin-top: 40px;
|
||
|
padding: 15px 80px;
|
||
|
font-size: 72px;
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
flex: 1 0 300px;
|
||
|
}
|
||
|
|
||
|
nav button {
|
||
|
height:56px;
|
||
|
width: 300px;
|
||
|
font-size: 16px;
|
||
|
color: black;
|
||
|
font-weight: bold;
|
||
|
background-color: white;
|
||
|
text-align: center;
|
||
|
border: none;
|
||
|
}
|