You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.0 KiB
CSS
109 lines
2.0 KiB
CSS
1 year ago
|
/* Member 1 */
|
||
|
* {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
box-sizing: border-box;
|
||
|
font-family: 'Roboto', sans-serif;
|
||
|
}
|
||
|
body {
|
||
|
height: auto;
|
||
|
}
|
||
|
/* JP - Member 2 Start*/
|
||
|
h1, h2, h3, h4 {
|
||
|
font-family: "Titillium Web", sans-serif;
|
||
|
}
|
||
|
nav {
|
||
|
padding-top: 5px;
|
||
|
padding-left: 5px;
|
||
|
padding-bottom: 5px;
|
||
|
padding-right: 5px;
|
||
|
text-align: center;
|
||
|
background-color: blue;
|
||
|
color: white;
|
||
|
}
|
||
|
/* JP - Member 2 End*/
|
||
|
/* Josua Member 3 Start */
|
||
|
nav > ul > li{
|
||
|
margin-top: 0.5rem;
|
||
|
margin-bottom: 0.5rem;
|
||
|
margin-left: 0.5rem;
|
||
|
margin-right: 0.5rem;
|
||
|
list-style: none;
|
||
|
display: inline-block;
|
||
|
padding-top:3px;
|
||
|
padding-bottom:3px;
|
||
|
padding-left:3px;
|
||
|
}
|
||
|
#container {
|
||
|
z-index: 99;
|
||
|
}
|
||
|
#landing {
|
||
|
background-image: url(https://images.unsplash.com/photo-1683009427660-b38dea9e8488?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80);
|
||
|
background-position: center;
|
||
|
background-size: cover;
|
||
|
background-repeat: no-repeat;
|
||
|
text-align: center;
|
||
|
min-height: 50vh;
|
||
|
color: rgb(255, 255, 255);
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
.info {
|
||
|
padding: 10rem;
|
||
|
}
|
||
|
.landing-container {
|
||
|
top: 3.1rem;
|
||
|
left: 0;
|
||
|
position: absolute;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
height: 50vh;
|
||
|
width: 100%;
|
||
|
}
|
||
|
#landing h1 {
|
||
|
font-size: 3rem;
|
||
|
}
|
||
|
#landing h3 {
|
||
|
font-size: 2rem;
|
||
|
margin: 1rem;
|
||
|
}
|
||
|
/*Josua - Member 3 End*/
|
||
|
|
||
|
/* Ron - Member 4 Start*/
|
||
|
#landing button {
|
||
|
cursor: pointer;
|
||
|
padding: 1rem 2rem;
|
||
|
background-color: blue;
|
||
|
border: 2px solid white;
|
||
|
border-radius: 50px;
|
||
|
transition: 0.5s;
|
||
|
color: white;
|
||
|
font-size: 1.125rem;
|
||
|
}
|
||
|
#landing button:hover {
|
||
|
background-color: white;
|
||
|
color: blue;
|
||
|
}
|
||
|
.landing h1 {
|
||
|
margin-top: 5rem;
|
||
|
}
|
||
|
/* Ron - Member 4 End*/
|
||
|
|
||
|
/* Ron - Member 5 Start*/
|
||
|
#hot {
|
||
|
text-align: center;
|
||
|
}
|
||
|
#hot h2 {
|
||
|
margin: 5rem 0;
|
||
|
}
|
||
|
#hot li {
|
||
|
display: inline-block;
|
||
|
list-style: none;
|
||
|
border: 3px solid blue;
|
||
|
border-radius: 10px;
|
||
|
padding: 3rem;
|
||
|
margin: auto .5rem;
|
||
|
}
|
||
|
/* Ron - Member 5 End*/
|
||
|
footer {
|
||
|
text-align: center;
|
||
|
margin-top: 10rem;
|
||
|
}
|