screen.css 11 KB

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