Actualizar 'cs.css'
This commit is contained in:
parent
8a575a0d40
commit
2d762f7e78
204
cs.css
204
cs.css
@ -66,7 +66,7 @@ img {
|
|||||||
/*TOP NAVBAR*/
|
/*TOP NAVBAR*/
|
||||||
/**********************************************************************************/
|
/**********************************************************************************/
|
||||||
|
|
||||||
nav {
|
/*nav {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -125,8 +125,202 @@ nav ul li a.active, nav ul li a:hover {
|
|||||||
|
|
||||||
#check {
|
#check {
|
||||||
display: none;
|
display: none;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
|
||||||
|
.navigation {
|
||||||
|
height: 100px;
|
||||||
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
|
background: #000;
|
||||||
|
font-family: Roboto;
|
||||||
|
font-size: 18px;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.brand {
|
||||||
|
position: absolute;
|
||||||
|
padding-left: 0px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.brand a,
|
||||||
|
.brand a:visited {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-container {
|
||||||
|
max-width: 1500px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li {
|
||||||
|
float: left ;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li a i {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li a, nav ul li a:visited {
|
||||||
|
display: block;
|
||||||
|
padding: 0 20px;
|
||||||
|
line-height: 100px;
|
||||||
|
background: #000;
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li a:hover, nav ul li a:visited:hover {
|
||||||
|
background: purple !important;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li a:not(:only-child):after,
|
||||||
|
nav ul li a:visited:not(:only-child):after {
|
||||||
|
padding-left: 4px;
|
||||||
|
content: ' ▾';
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li ul li {
|
||||||
|
min-width: 190px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li ul li a {
|
||||||
|
padding: 15px;
|
||||||
|
line-height: 20px;
|
||||||
|
background-color: #333 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.nav-dropdown {
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
z-index: 1;
|
||||||
|
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile navigation */
|
||||||
|
.nav-mobile {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
background: #000;
|
||||||
|
height: 70px;
|
||||||
|
width: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 798px) {
|
||||||
|
|
||||||
|
nav-mobile {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-list {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
width: 100%;
|
||||||
|
padding: 70px 0 15px;
|
||||||
|
|
||||||
|
}
|
||||||
|
nav ul {
|
||||||
|
display: none;
|
||||||
|
margin-top: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
nav ul li {
|
||||||
|
float: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
nav ul li a {
|
||||||
|
padding: 15px;
|
||||||
|
line-height: 20px;
|
||||||
|
background-color: #333 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li ul li a {
|
||||||
|
padding-left: 30px;
|
||||||
|
background-color: #444 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-dropdown {
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 799px) {
|
||||||
|
|
||||||
|
.nav-list {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle {
|
||||||
|
position: absolute;
|
||||||
|
left: 18px;
|
||||||
|
top: 35px;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 10px 35px 16px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle span,
|
||||||
|
#nav-toggle span:before,
|
||||||
|
#nav-toggle span:after {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 1px;
|
||||||
|
height: 5px;
|
||||||
|
width: 35px;
|
||||||
|
background: #ffffff;
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
content: '';
|
||||||
|
transition: all 300ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle span:before {
|
||||||
|
top: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle span:after {
|
||||||
|
bottom: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle.active span {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle.active span:before, #nav-toggle.active span:after {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle.active span:before {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-toggle.active span:after {
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*1 SECTION, WELCOME TO FOSC*/
|
/*1 SECTION, WELCOME TO FOSC*/
|
||||||
/**********************************************************************************/
|
/**********************************************************************************/
|
||||||
|
|
||||||
@ -424,7 +618,7 @@ footer {
|
|||||||
|
|
||||||
@media only screen and (max-width: 1024px) {
|
@media only screen and (max-width: 1024px) {
|
||||||
|
|
||||||
.checkbtn {
|
/*.checkbtn {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
@ -469,7 +663,7 @@ footer {
|
|||||||
|
|
||||||
#check:checked ~ ul {
|
#check:checked ~ ul {
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
.hero h1 {
|
.hero h1 {
|
||||||
font-size: 70px;
|
font-size: 70px;
|
||||||
@ -525,7 +719,7 @@ footer {
|
|||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
@media only screen and (max-width: 600px) {
|
||||||
|
|
||||||
.checkbtn {
|
/*.checkbtn {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
@ -570,7 +764,7 @@ footer {
|
|||||||
|
|
||||||
#check:checked ~ ul {
|
#check:checked ~ ul {
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
.hero {
|
.hero {
|
||||||
padding: 30% 0px;
|
padding: 30% 0px;
|
||||||
|
Loading…
Reference in New Issue
Block a user