screen.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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 21, sass/screen.scss */
  73. body {
  74. background-color: #111;
  75. color: #ccc;
  76. font-family: "Noto Sans", Verdana, sans-serif;
  77. }
  78. /* line 27, sass/screen.scss */
  79. #flex {
  80. display: flex;
  81. align-content: space-between;
  82. }
  83. /* line 32, sass/screen.scss */
  84. .grid {
  85. margin: 20px 0 20px 20px;
  86. }
  87. /* line 35, sass/screen.scss */
  88. .grid:after {
  89. content: '';
  90. display: table;
  91. clear: both;
  92. }
  93. /* line 42, sass/screen.scss */
  94. [class*='col-'] {
  95. float: left;
  96. padding-right: 20px;
  97. }
  98. /* line 47, sass/screen.scss */
  99. .col-twelfth {
  100. width: 8.33%;
  101. }
  102. /* line 48, sass/screen.scss */
  103. .col-sixth {
  104. width: 16.66%;
  105. }
  106. /* line 49, sass/screen.scss */
  107. .col-quarter {
  108. width: 25%;
  109. }
  110. /* line 50, sass/screen.scss */
  111. .col-third {
  112. width: 33.33%;
  113. }
  114. /* line 51, sass/screen.scss */
  115. .col-fivetwelfth {
  116. width: 41.66%;
  117. }
  118. /* line 52, sass/screen.scss */
  119. .col-half {
  120. width: 50%;
  121. }
  122. /* line 53, sass/screen.scss */
  123. .col-seventwelfth {
  124. width: 58.33%;
  125. }
  126. /* line 54, sass/screen.scss */
  127. .col-twothird {
  128. width: 66.66%;
  129. }
  130. /* line 55, sass/screen.scss */
  131. .col-threequarter {
  132. width: 75%;
  133. }
  134. /* line 56, sass/screen.scss */
  135. .col-fivesixth {
  136. width: 83.33%;
  137. }
  138. /* line 57, sass/screen.scss */
  139. .col-eleventwelfth {
  140. width: 91.66%;
  141. }
  142. /* line 58, sass/screen.scss */
  143. .col-full {
  144. width: 100%;
  145. }
  146. /* line 61, sass/screen.scss */
  147. #sidebar {
  148. margin-left: 20px;
  149. width: 200px;
  150. flex-grow: 0;
  151. flex-shrink: 0;
  152. }
  153. /* line 68, sass/screen.scss */
  154. #sidebar-right {
  155. width: 200px;
  156. }
  157. /* line 1, sass/_content.scss */
  158. #content {
  159. line-height: 15pt;
  160. font-size: 11pt;
  161. }
  162. /* line 5, sass/_content.scss */
  163. #content p {
  164. margin-top: 10px;
  165. margin-bottom: 10px;
  166. }
  167. /* line 10, sass/_content.scss */
  168. #content ul, #content ol {
  169. list-style: square outside;
  170. padding-left: 20px;
  171. }
  172. /* line 15, sass/_content.scss */
  173. #content a, #content a:visited, #content a:active {
  174. color: #e6e6e6;
  175. text-decoration: none;
  176. }
  177. /* line 20, sass/_content.scss */
  178. #content a:hover {
  179. color: white;
  180. }
  181. /* line 1, sass/_box.scss */
  182. .box {
  183. margin-bottom: 20px;
  184. }
  185. /* line 4, sass/_box.scss */
  186. .box .title {
  187. padding-left: 5px;
  188. padding-right: 5px;
  189. border-bottom: 30px solid silver;
  190. border-right: 20px solid transparent;
  191. display: inline-block;
  192. height: 0;
  193. line-height: 32px;
  194. font-family: Vollkorn, serif;
  195. font-variant: small-caps;
  196. text-shadow: 1px 1px 2px #111;
  197. color: #111;
  198. }
  199. /* line 20, sass/_box.scss */
  200. .box .body {
  201. border-top: 2px solid silver;
  202. border-bottom: 1px solid silver;
  203. background-color: #333;
  204. }
  205. /* line 26, sass/_box.scss */
  206. .box p {
  207. padding: 5px;
  208. margin: 0 !important;
  209. }
  210. /* line 32, sass/_box.scss */
  211. .box-left {
  212. float: left;
  213. }
  214. /* line 36, sass/_box.scss */
  215. .box-center {
  216. text-align: center;
  217. margin: 0 auto 20px auto;
  218. float: none;
  219. }
  220. /* line 41, sass/_box.scss */
  221. .box-center .title {
  222. border-bottom: 30px solid silver;
  223. border-right: 20px solid transparent;
  224. border-left: 20px solid transparent;
  225. }
  226. /* line 47, sass/_box.scss */
  227. .box-center .body {
  228. text-align: left;
  229. }
  230. /* line 52, sass/_box.scss */
  231. .box-right {
  232. float: right;
  233. text-align: right;
  234. }
  235. /* line 56, sass/_box.scss */
  236. .box-right .title {
  237. border-bottom: 30px solid silver;
  238. border-left: 20px solid transparent;
  239. border-right: none;
  240. }
  241. /* line 62, sass/_box.scss */
  242. .box-right .body {
  243. text-align: left;
  244. }
  245. /* line 75, sass/screen.scss */
  246. #title-bar {
  247. margin: 20px;
  248. background: radial-gradient(rgba(0, 0, 0, 0), rgba(17, 17, 17, 0.8) 60%, #111111 70%) no-repeat center, url("../bg-navy.png") no-repeat center;
  249. background-size: 853px, auto;
  250. }
  251. /* line 82, sass/screen.scss */
  252. #title-bar a.logo {
  253. text-align: center;
  254. font-family: serif;
  255. font-size: xx-large;
  256. text-transform: uppercase;
  257. text-shadow: 1px 1px 2px #111;
  258. display: block;
  259. text-decoration: none;
  260. color: #ccc;
  261. }
  262. /* line 92, sass/screen.scss */
  263. #title-bar a.logo img {
  264. height: 70px;
  265. vertical-align: middle;
  266. background: radial-gradient(#111111, rgba(0, 0, 0, 0));
  267. }
  268. /* line 99, sass/screen.scss */
  269. #title-bar .titles {
  270. display: flex;
  271. justify-content: space-between;
  272. }
  273. /* line 103, sass/screen.scss */
  274. #title-bar .titles .left {
  275. padding-left: 5px;
  276. padding-right: 5px;
  277. border-bottom: 20px solid silver;
  278. border-right: 15px solid transparent;
  279. display: inline-block;
  280. height: 0;
  281. line-height: 22px;
  282. font-size: smaller;
  283. text-shadow: 1px 1px 2px #444;
  284. color: #111;
  285. }
  286. /* line 118, sass/screen.scss */
  287. #title-bar .titles .right {
  288. padding-left: 5px;
  289. padding-right: 5px;
  290. border-bottom: 20px solid silver;
  291. border-left: 15px solid transparent;
  292. display: inline-block;
  293. height: 0;
  294. line-height: 22px;
  295. /*font-family: $fSerif;
  296. font-variant: small-caps;*/
  297. font-size: smaller;
  298. text-shadow: 1px 1px 2px #444;
  299. color: #111;
  300. float: right;
  301. }
  302. /* line 136, sass/screen.scss */
  303. #title-bar .titles a, #title-bar .titles a:visited, #title-bar .titles a:active {
  304. color: #111;
  305. }
  306. /* line 142, sass/screen.scss */
  307. #title-bar .body {
  308. display: block;
  309. }
  310. /* line 146, sass/screen.scss */
  311. #title-bar .top-menu {
  312. display: flex;
  313. width: 100%;
  314. }
  315. /* line 150, sass/screen.scss */
  316. #title-bar .top-menu li {
  317. flex-grow: 1;
  318. padding: 5px;
  319. padding-top: 7px;
  320. text-align: center;
  321. width: 40px;
  322. transition: all .3s ease;
  323. font-family: Vollkorn, serif;
  324. font-variant: small-caps;
  325. text-shadow: 1px 1px 2px #111;
  326. }
  327. /* line 161, sass/screen.scss */
  328. #title-bar .top-menu li.fixed {
  329. flex-grow: 0;
  330. flex-shrink: 0;
  331. }
  332. /* line 166, sass/screen.scss */
  333. #title-bar .top-menu li a {
  334. text-decoration: none;
  335. color: #ccc;
  336. display: block;
  337. }
  338. /* line 172, sass/screen.scss */
  339. #title-bar .top-menu li:hover {
  340. background-color: #444;
  341. }
  342. /* line 181, sass/screen.scss */
  343. .menu a {
  344. text-decoration: none;
  345. font-style: italic;
  346. font-size: smaller;
  347. color: #ccc;
  348. display: block;
  349. }
  350. /* line 189, sass/screen.scss */
  351. .menu li {
  352. padding: 7px 0 5px 5px;
  353. transition: all .3s ease;
  354. }
  355. /* line 193, sass/screen.scss */
  356. .menu li:before {
  357. content: "\f054";
  358. font-family: FontAwesome, serif;
  359. float: left;
  360. width: 0;
  361. font-size: smaller;
  362. transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  363. color: transparent;
  364. }
  365. /* line 202, sass/screen.scss */
  366. .menu li:hover {
  367. background-color: #444;
  368. }
  369. /* line 205, sass/screen.scss */
  370. .menu li:hover:before {
  371. color: inherit;
  372. width: 12px;
  373. }
  374. /* line 211, sass/screen.scss */
  375. .menu li.title {
  376. font-weight: bold;
  377. }
  378. /* line 217, sass/screen.scss */
  379. #content {
  380. margin-left: 20px;
  381. margin-right: 20px;
  382. flex-grow: 1;
  383. width: 200px;
  384. }
  385. /* line 223, sass/screen.scss */
  386. #content .content-header {
  387. text-align: center;
  388. border-bottom: 2px solid silver;
  389. }
  390. /* line 227, sass/screen.scss */
  391. #content .content-header .pageTitle {
  392. text-align: center;
  393. margin: 0 auto;
  394. border-bottom: 30px solid silver;
  395. border-right: 20px solid transparent;
  396. border-left: 20px solid transparent;
  397. display: inline-block;
  398. height: 0;
  399. line-height: 32px;
  400. font-family: Vollkorn, serif;
  401. font-variant: small-caps;
  402. text-shadow: 1px 1px 2px #111;
  403. color: #111;
  404. }
  405. /* line 245, sass/screen.scss */
  406. #content .content-footer {
  407. text-align: center;
  408. border-top: 1px solid silver;
  409. clear: both;
  410. }
  411. /* line 250, sass/screen.scss */
  412. #content .content-footer .copy {
  413. text-align: center;
  414. border-top: 15px solid silver;
  415. border-right: 10px solid transparent;
  416. border-left: 10px solid transparent;
  417. display: inline-block;
  418. height: 0;
  419. line-height: 0;
  420. margin: 0;
  421. padding: 0;
  422. font-size: x-small;
  423. color: #111;
  424. }
  425. /* line 262, sass/screen.scss */
  426. #content .content-footer .copy div {
  427. position: relative;
  428. top: -14px;
  429. }
  430. /* line 269, sass/screen.scss */
  431. #content .content-body {
  432. background-color: #222;
  433. padding: 20px;
  434. overflow: hidden;
  435. *zoom: 1;
  436. }
  437. /* line 2, sass/_news.scss */
  438. .news-list .news-item {
  439. margin-bottom: 20px;
  440. }
  441. /* line 3, sass/_news.scss */
  442. .news-list .news-item .title {
  443. font-family: Vollkorn, serif;
  444. font-variant: small-caps;
  445. font-size: larger;
  446. text-shadow: 1px 1px 2px #111;
  447. padding-bottom: 5px;
  448. border-bottom: 1px solid #ccc;
  449. }
  450. /* line 13, sass/_news.scss */
  451. .news-list .news-item .title .right {
  452. float: right;
  453. font-size: small;
  454. font-family: "Noto Sans", Verdana, sans-serif;
  455. font-variant: normal;
  456. }
  457. /* line 22, sass/_news.scss */
  458. .news-list .news-item .body {
  459. text-align: justify;
  460. }
  461. /* line 28, sass/_news.scss */
  462. .news-list .news-item li {
  463. font-size: small;
  464. }
  465. /* line 31, sass/_news.scss */
  466. .news-list .news-item li a {
  467. font-variant: small-caps;
  468. text-shadow: 1px 1px 2px #111;
  469. }