style.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //@import "compass/reset";
  2. //@import "compass/utilities";
  3. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i|Orbitron:400,700');
  4. $cOutline: SteelBlue;
  5. $fHeadlines: Orbitron, serif;
  6. @mixin background {
  7. 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;
  8. }
  9. body {
  10. background-color: #111;
  11. color: #ccc;
  12. font-family: "Open Sans", Helvetica, Arial, sans-serif;
  13. }
  14. h1, h2, h3, h4, h5, h6, h7 {
  15. font-family: $fHeadlines;
  16. color: $cOutline;
  17. }
  18. h1 {
  19. border-bottom: 1px solid $cOutline;
  20. }
  21. a {
  22. color: $cOutline;
  23. text-decoration: none;
  24. &:hover {
  25. color: #fff;
  26. transition: .3s;
  27. }
  28. }
  29. .header {
  30. border-width: 1px;
  31. border-style: solid;
  32. border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, $cOutline 40%) 1 100%;
  33. @include background;
  34. .logo {
  35. height: 50px;
  36. vertical-align: bottom;
  37. margin-left: 40px;
  38. background: url(../img/ge-logo.png) no-repeat;
  39. background-size: 61px 50px;
  40. a {
  41. font-family: $fHeadlines;
  42. color: gold;
  43. text-decoration: none;
  44. font-weight: bold;
  45. font-size: x-large;
  46. line-height: 60px;
  47. margin-left: 60px;
  48. }
  49. }
  50. .loginbox {
  51. //border: 1px solid transparentize($cOutline, .5);
  52. border-radius: 4px;
  53. margin-right: 20px;
  54. background: #000;
  55. height: 45w px;
  56. .profile {
  57. float: left;
  58. height: 50px;
  59. width: 40px;
  60. img {
  61. width: 33px;
  62. height: 40px;
  63. border: 1px solid transparentize($cOutline, .3);
  64. border-radius: 1px;
  65. }
  66. }
  67. .handle {
  68. font-family: $fHeadlines;
  69. }
  70. .time {
  71. }
  72. }
  73. .links {
  74. text-align: center;
  75. padding-top: 5px;
  76. a {
  77. font-family: $fHeadlines;
  78. }
  79. }
  80. }
  81. .seperators {
  82. margin: 0;
  83. &.small {
  84. .chevron {
  85. width: 3px;
  86. height: 5px;
  87. }
  88. }
  89. .chevron {
  90. width: 6px;
  91. height: 20px;
  92. background: $cOutline;
  93. &.left {
  94. transform: skew(45deg, 0deg);
  95. margin-left: 9px;
  96. }
  97. &.right {
  98. transform: skew(-45deg, 0deg);
  99. margin-left: auto;
  100. margin-right: 9px;
  101. }
  102. &.middle {
  103. width: 100%;
  104. background: #111;
  105. border-bottom: 1px solid $cOutline;
  106. @include background;
  107. }
  108. }
  109. }