screen.css 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. /* Welcome to Compass.
  2. * In this file you should write your main styles. (or centralize your imports)
  3. * Import this file using the following HTML or equivalent:
  4. * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
  5. @import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,400italic,700|Vollkorn);
  6. /* line 5, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  7. html, body, div, span, applet, object, iframe,
  8. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  9. a, abbr, acronym, address, big, cite, code,
  10. del, dfn, em, img, ins, kbd, q, s, samp,
  11. small, strike, strong, sub, sup, tt, var,
  12. b, u, i, center,
  13. dl, dt, dd, ol, ul, li,
  14. fieldset, form, label, legend,
  15. table, caption, tbody, tfoot, thead, tr, th, td,
  16. article, aside, canvas, details, embed,
  17. figure, figcaption, footer, header, hgroup,
  18. menu, nav, output, ruby, section, summary,
  19. time, mark, audio, video {
  20. margin: 0;
  21. padding: 0;
  22. border: 0;
  23. font: inherit;
  24. font-size: 100%;
  25. vertical-align: baseline;
  26. }
  27. /* line 22, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  28. html {
  29. line-height: 1;
  30. }
  31. /* line 24, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  32. ol, ul {
  33. list-style: none;
  34. }
  35. /* line 26, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  36. table {
  37. border-collapse: collapse;
  38. border-spacing: 0;
  39. }
  40. /* line 28, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  41. caption, th, td {
  42. text-align: left;
  43. font-weight: normal;
  44. vertical-align: middle;
  45. }
  46. /* line 30, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  47. q, blockquote {
  48. quotes: none;
  49. }
  50. /* line 103, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  51. q:before, q:after, blockquote:before, blockquote:after {
  52. content: "";
  53. content: none;
  54. }
  55. /* line 32, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  56. a img {
  57. border: none;
  58. }
  59. /* line 116, ../../../../../home/daniel/.gem/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
  60. article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  61. display: block;
  62. }
  63. /**
  64. * Colors for the project.
  65. */
  66. /* line 12, sass/screen.scss */
  67. * {
  68. -moz-box-sizing: border-box;
  69. -webkit-box-sizing: border-box;
  70. box-sizing: border-box;
  71. }
  72. /* line 20, sass/screen.scss */
  73. body {
  74. background-color: #111;
  75. color: #ccc;
  76. font-family: "Noto Sans", Verdana, sans-serif;
  77. }
  78. /* line 26, sass/screen.scss */
  79. .grid {
  80. margin: 20px 0 20px 20px;
  81. }
  82. /* line 29, sass/screen.scss */
  83. .grid:after {
  84. content: '';
  85. display: table;
  86. clear: both;
  87. }
  88. /* line 36, sass/screen.scss */
  89. [class*='col-'] {
  90. float: left;
  91. padding-right: 20px;
  92. }
  93. /* line 41, sass/screen.scss */
  94. .col-twelfth {
  95. width: 8.33%;
  96. }
  97. /* line 42, sass/screen.scss */
  98. .col-sixth {
  99. width: 16.66%;
  100. }
  101. /* line 43, sass/screen.scss */
  102. .col-quarter {
  103. width: 25%;
  104. }
  105. /* line 44, sass/screen.scss */
  106. .col-third {
  107. width: 33.33%;
  108. }
  109. /* line 45, sass/screen.scss */
  110. .col-fivetwelfth {
  111. width: 41.66%;
  112. }
  113. /* line 46, sass/screen.scss */
  114. .col-half {
  115. width: 50%;
  116. }
  117. /* line 47, sass/screen.scss */
  118. .col-seventwelfth {
  119. width: 58.33%;
  120. }
  121. /* line 48, sass/screen.scss */
  122. .col-twothird {
  123. width: 66.66%;
  124. }
  125. /* line 49, sass/screen.scss */
  126. .col-threequarter {
  127. width: 75%;
  128. }
  129. /* line 50, sass/screen.scss */
  130. .col-fivesixth {
  131. width: 83.33%;
  132. }
  133. /* line 51, sass/screen.scss */
  134. .col-eleventwelfth {
  135. width: 91.66%;
  136. }
  137. /* line 52, sass/screen.scss */
  138. .col-full {
  139. width: 100%;
  140. }
  141. /* line 55, sass/screen.scss */
  142. #sidebar {
  143. margin-left: 20px;
  144. float: left;
  145. width: 200px;
  146. }
  147. /* line 1, sass/_content.scss */
  148. #content {
  149. margin-left: 250px;
  150. margin-right: 20px;
  151. line-height: 15pt;
  152. font-size: 11pt;
  153. }
  154. /* line 8, sass/_content.scss */
  155. #content p {
  156. margin-top: 10px;
  157. margin-bottom: 10px;
  158. }
  159. /* line 13, sass/_content.scss */
  160. #content ul, #content ol {
  161. list-style: disc outside;
  162. padding-left: 20px;
  163. }
  164. /* line 1, sass/_box.scss */
  165. .box {
  166. margin-bottom: 20px;
  167. }
  168. /* line 4, sass/_box.scss */
  169. .box .title {
  170. padding-left: 5px;
  171. padding-right: 5px;
  172. border-bottom: 30px solid silver;
  173. border-right: 20px solid transparent;
  174. display: inline-block;
  175. height: 0;
  176. line-height: 32px;
  177. font-family: Vollkorn, serif;
  178. font-variant: small-caps;
  179. text-shadow: 1px 1px 2px #111;
  180. color: #111;
  181. }
  182. /* line 20, sass/_box.scss */
  183. .box .body {
  184. border-top: 2px solid silver;
  185. border-bottom: 1px solid silver;
  186. background-color: #333;
  187. }
  188. /* line 26, sass/_box.scss */
  189. .box p {
  190. padding: 5px;
  191. margin: 0 !important;
  192. }
  193. /* line 32, sass/_box.scss */
  194. .box-left {
  195. float: left;
  196. }
  197. /* line 36, sass/_box.scss */
  198. .box-center {
  199. text-align: center;
  200. margin: 0 auto 20px auto;
  201. float: none;
  202. }
  203. /* line 41, sass/_box.scss */
  204. .box-center .title {
  205. border-bottom: 30px solid silver;
  206. border-right: 20px solid transparent;
  207. border-left: 20px solid transparent;
  208. }
  209. /* line 47, sass/_box.scss */
  210. .box-center .body {
  211. text-align: left;
  212. }
  213. /* line 52, sass/_box.scss */
  214. .box-right {
  215. float: right;
  216. text-align: right;
  217. }
  218. /* line 56, sass/_box.scss */
  219. .box-right .title {
  220. border-bottom: 30px solid silver;
  221. border-left: 20px solid transparent;
  222. border-right: none;
  223. }
  224. /* line 62, sass/_box.scss */
  225. .box-right .body {
  226. text-align: left;
  227. }
  228. /* line 65, sass/screen.scss */
  229. #title-bar {
  230. margin: 20px;
  231. background: radial-gradient(rgba(0, 0, 0, 0), rgba(17, 17, 17, 0.8) 60%, #111111 70%) no-repeat center, url("../bg-army.png") no-repeat center;
  232. background-size: 853px, auto;
  233. }
  234. /* line 71, sass/screen.scss */
  235. #title-bar .logo {
  236. text-align: center;
  237. font-family: serif;
  238. font-size: xx-large;
  239. text-transform: uppercase;
  240. text-shadow: 1px 1px 2px #111;
  241. }
  242. /* line 78, sass/screen.scss */
  243. #title-bar .logo img {
  244. height: 70px;
  245. vertical-align: middle;
  246. background: radial-gradient(#111111, rgba(0, 0, 0, 0));
  247. }
  248. /* line 85, sass/screen.scss */
  249. #title-bar .titles {
  250. display: flex;
  251. justify-content: space-between;
  252. }
  253. /* line 89, sass/screen.scss */
  254. #title-bar .titles .left {
  255. padding-left: 5px;
  256. padding-right: 5px;
  257. border-bottom: 20px solid silver;
  258. border-right: 15px solid transparent;
  259. display: inline-block;
  260. height: 0;
  261. line-height: 22px;
  262. font-size: smaller;
  263. color: #111;
  264. }
  265. /* line 104, sass/screen.scss */
  266. #title-bar .titles .right {
  267. padding-left: 5px;
  268. padding-right: 5px;
  269. border-bottom: 20px solid silver;
  270. border-left: 15px solid transparent;
  271. display: inline-block;
  272. height: 0;
  273. line-height: 22px;
  274. /*font-family: $fSerif;
  275. font-variant: small-caps;*/
  276. font-size: smaller;
  277. color: #111;
  278. float: right;
  279. }
  280. /* line 124, sass/screen.scss */
  281. #title-bar .body {
  282. display: block;
  283. }
  284. /* line 128, sass/screen.scss */
  285. #title-bar .top-menu {
  286. display: flex;
  287. width: 100%;
  288. }
  289. /* line 132, sass/screen.scss */
  290. #title-bar .top-menu li {
  291. flex-grow: 1;
  292. padding: 5px;
  293. padding-top: 7px;
  294. text-align: center;
  295. width: 10px;
  296. transition: all .3s ease;
  297. font-family: Vollkorn, serif;
  298. font-variant: small-caps;
  299. text-shadow: 1px 1px 2px #111;
  300. }
  301. /* line 143, sass/screen.scss */
  302. #title-bar .top-menu li a {
  303. text-decoration: none;
  304. color: #ccc;
  305. display: block;
  306. }
  307. /* line 149, sass/screen.scss */
  308. #title-bar .top-menu li:hover {
  309. background-color: #444;
  310. }
  311. /* line 158, sass/screen.scss */
  312. .menu a {
  313. text-decoration: none;
  314. font-style: italic;
  315. font-size: smaller;
  316. color: #ccc;
  317. display: block;
  318. }
  319. /* line 166, sass/screen.scss */
  320. .menu li {
  321. padding: 7px 0 5px 5px;
  322. transition: all .3s ease;
  323. }
  324. /* line 170, sass/screen.scss */
  325. .menu li:before {
  326. content: "\f054";
  327. font-family: FontAwesome, serif;
  328. float: left;
  329. width: 0;
  330. font-size: smaller;
  331. transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  332. color: transparent;
  333. }
  334. /* line 179, sass/screen.scss */
  335. .menu li:hover {
  336. background-color: #444;
  337. }
  338. /* line 182, sass/screen.scss */
  339. .menu li:hover:before {
  340. color: inherit;
  341. width: 12px;
  342. }
  343. /* line 188, sass/screen.scss */
  344. .menu li.title {
  345. font-weight: bold;
  346. }
  347. /* line 194, sass/screen.scss */
  348. .content-header {
  349. text-align: center;
  350. border-bottom: 2px solid silver;
  351. }
  352. /* line 198, sass/screen.scss */
  353. .content-header .pageTitle {
  354. text-align: center;
  355. margin: 0 auto;
  356. border-bottom: 30px solid silver;
  357. border-right: 20px solid transparent;
  358. border-left: 20px solid transparent;
  359. display: inline-block;
  360. height: 0;
  361. line-height: 32px;
  362. font-family: Vollkorn, serif;
  363. font-variant: small-caps;
  364. text-shadow: 1px 1px 2px #111;
  365. color: #111;
  366. }
  367. /* line 216, sass/screen.scss */
  368. .content-footer {
  369. text-align: center;
  370. border-top: 1px solid silver;
  371. clear: both;
  372. }
  373. /* line 221, sass/screen.scss */
  374. .content-footer .copy {
  375. text-align: center;
  376. border-top: 15px solid silver;
  377. border-right: 10px solid transparent;
  378. border-left: 10px solid transparent;
  379. display: inline-block;
  380. height: 0;
  381. line-height: 0;
  382. margin: 0;
  383. padding: 0;
  384. font-size: x-small;
  385. color: #111;
  386. }
  387. /* line 233, sass/screen.scss */
  388. .content-footer .copy div {
  389. position: relative;
  390. top: -14px;
  391. }
  392. /* line 240, sass/screen.scss */
  393. .content-body {
  394. background-color: #222;
  395. padding: 20px;
  396. overflow: hidden;
  397. *zoom: 1;
  398. }