@import url(http://fonts.googleapis.com/css?family=Open+Sans:300&subset=latin,cyrillic,cyrillic-ext);
body {
background-color: white;
font-family: "Open Sans", sans-serif;
}
a {
text-decoration: none;
color: #0088cc;
}
a:hover {
text-decoration: underline;
}
#header {
padding-top: 0.8em;
padding-bottom: 1.3em;
display: block;
}
#header #logo {
width: 40%;
}
#header #info {
width: 50%;
padding-top: 0.8em;
}
#header #info ul li {
display: inline;
}
#header #bascket {
width: 10%;
}
#dropdown {
text-align: center;
background: linear-gradient(to bottom, #cfffff 0%, #218ed8 100%);
margin-bottom: 1.2em;
}
#dropdown ul {
list-style: none;
}
#dropdown ul li {
flex: 1;
display: flex;
display: block;
position: relative;
float: left;
padding: 10px;
padding-right: 40px;
padding-left: 40px;
}
#dropdown ul li a {
color: white;
}
#dropdown ul li:hover {
background-color: red;
}
#dropdown ul li:hover ul {
display: block;
position: absolute;
z-index: 100;
width: 10em;
text-align: center;
background-color: white;
border: 7px solid white;
}
#dropdown ul li:hover a {
display: block;
}
#dropdown ul ul {
margin-top: 0.3em;
background-color: rgba(9, 65, 94, 0.8);
display: none;
box-shadow: 0px 3px 12px 0px rgba(50, 50, 50, 0.7);
}
#dropdown ul ul li {
padding-left: 1em;
padding-right: 1em;
width: 10em;
}
#dropdown ul ul li a {
float: left;
color: black;
background-color: transparent;
}
#dropdown ul ul li:hover {
background-color: transparent;
}
#breadcrum {
padding: 0.8em;
padding-left: 1.5em;
background-color: rgba(221, 212, 211, 0.34);
}
#breadcrum ul li {
display: inline;
}
#breadcrum ul .active {
pointer-events: none;
cursor: default;
text-decoration: none;
color: gray;
}
#footer {
background-color: #f2f2f2;
}
#footer .third {
width: 33%;
}