| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /*
- * Font squirrel kit for Bebas Neue font
- */
- @font-face {
- font-family: BebasNeueRegular;
- src: url('BebasNeue-webfont.eot');
- src: url('BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
- url('BebasNeue-webfont.woff') format('woff'),
- url('BebasNeue-webfont.ttf') format('truetype'),
- url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
- font-weight: normal;
- font-style: normal;
- }
- /*
- * Common
- */
- * {
- margin: 0;
- padding: 0;
- }
- .clear {
- clear: both;
- line-height: 0;
- }
- a, input {
- outline: none;
- }
- /*
- * Layout
- */
- #wrapper {
- width: 900px;
- margin: 100px auto 0;
- }
- /*
- * Menu
- */
- #menu {
- float: left;
- padding: 41px 10px 41px 0;
- border-right: 1px solid #c5c5c5;
- list-style: none;
-
- a {
- position: relative;
- display: block;
- width: 138px;
- height: 31px;
- padding: 10px 40px 0 12px;
- font: normal 21px/23px BebasNeueRegular, arial;
- color: #7e7e7e;
- text-decoration: none;
-
- self:hover {
- background-color: #e9e9e9;
- }
- }
-
- .active {
- background-color: #9b9b9b !important;
- color: #fff;
- }
-
- .icon {
- position: absolute;
- top: 14px;
- right: 12px;
- width: 16px;
- height: 14px;
- }
- }
|