style.css 2.8 KB

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