107 lines
1.4 KiB
CSS
107 lines
1.4 KiB
CSS
/* body {
|
|
padding: 2rem;
|
|
margin: 0 auto;
|
|
max-width: 60rem;
|
|
} */
|
|
/*
|
|
@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
|
|
body {
|
|
margin: 0;
|
|
/* background: #222;
|
|
font-family: 'Work Sans', sans-serif;
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
.nav {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
background: #fd85e9;
|
|
}
|
|
|
|
header::after {
|
|
content: '';
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.logo {
|
|
float: left;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
nav {
|
|
float: right;
|
|
}
|
|
|
|
nav ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
nav li {
|
|
display: inline-block;
|
|
margin-left: 70px;
|
|
padding-top: 23px;
|
|
|
|
position: relative;
|
|
}
|
|
|
|
nav a {
|
|
color: #444;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: #000;
|
|
}
|
|
|
|
nav a::before {
|
|
content: '';
|
|
display: block;
|
|
height: 5px;
|
|
background-color: #444;
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
width: 0%;
|
|
|
|
transition: all ease-in-out 250ms;
|
|
}
|
|
|
|
nav a:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
max-width: 100%;
|
|
margin: 50px;
|
|
|
|
}
|
|
.container div{
|
|
flex-basis: 500px;
|
|
background-color: aqua;
|
|
contain: content;
|
|
padding: 20px;
|
|
margin: 20px;
|
|
}
|
|
*/
|
|
|
|
.sidenav-overlay{
|
|
z-index: 0 !important;
|
|
height: 100% !important;
|
|
}
|
|
.brand-logo{
|
|
padding-top: 3px !important;
|
|
padding-left: 3px !important;
|
|
|
|
} |