123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- //@import "compass/reset";
- //@import "compass/utilities";
- @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i|Orbitron:400,700');
- $cOutline: SteelBlue;
- $fHeadlines: Orbitron, serif;
- @mixin background {
- background: linear-gradient(to right, #000 0%, rgba(0,0,0,0) 3%, rgba(0,0,0,0) 97%, #000 100% ) repeat-y center, url(../img/bg_noise.png) repeat;
- }
- body {
- background-color: #111;
- color: #ccc;
- font-family: "Open Sans", Helvetica, Arial, sans-serif;
- }
- h1, h2, h3, h4, h5, h6, h7 {
- font-family: $fHeadlines;
- color: $cOutline;
- }
- h1 {
- border-bottom: 1px solid $cOutline;
- }
- a {
- color: $cOutline;
- text-decoration: none;
- &:hover {
- color: #fff;
- transition: .3s;
- }
- }
- .header {
- border-width: 1px;
- border-style: solid;
- border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, $cOutline 40%) 1 100%;
- @include background;
- .logo {
- height: 50px;
- vertical-align: bottom;
- margin-left: 40px;
- background: url(../img/ge-logo.png) no-repeat;
- background-size: 61px 50px;
- a {
- font-family: $fHeadlines;
- color: gold;
- text-decoration: none;
- font-weight: bold;
- font-size: x-large;
- line-height: 60px;
- margin-left: 60px;
- }
- }
- .loginbox {
- //border: 1px solid transparentize($cOutline, .5);
- border-radius: 4px;
- margin-right: 20px;
- background: #000;
- height: 45w px;
- .profile {
- float: left;
- height: 50px;
- width: 40px;
- img {
- width: 33px;
- height: 40px;
- border: 1px solid transparentize($cOutline, .3);
- border-radius: 1px;
- }
- }
- .handle {
- font-family: $fHeadlines;
- }
- .time {
-
- }
- }
- .links {
- text-align: center;
- padding-top: 5px;
- a {
- font-family: $fHeadlines;
- }
- }
- }
- .seperators {
- margin: 0;
- &.small {
- .chevron {
- width: 3px;
- height: 5px;
- }
- }
- .chevron {
- width: 6px;
- height: 20px;
- background: $cOutline;
- &.left {
- transform: skew(45deg, 0deg);
- margin-left: 9px;
- }
- &.right {
- transform: skew(-45deg, 0deg);
- margin-left: auto;
- margin-right: 9px;
- }
- &.middle {
- width: 100%;
- background: #111;
- border-bottom: 1px solid $cOutline;
- @include background;
- }
- }
- }
|