theme.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. @font-face {
  2. font-family: 'Titillium';
  3. src: url('fonts/titillium-regular-webfont.woff') format('woff');
  4. font-style: normal;
  5. font-weight: 300;
  6. }
  7. @font-face {
  8. font-family: 'Titillium';
  9. src: url('fonts/titillium-regularitalic-webfont.woff') format('woff');
  10. font-style: italic;
  11. font-weight: 300;
  12. }
  13. @font-face {
  14. font-family: 'Titillium';
  15. src: url('fonts/titillium-bold-webfont.woff') format('woff');
  16. font-style: normal;
  17. font-weight: 700;
  18. }
  19. @font-face {
  20. font-family: 'Titillium';
  21. src: url('fonts/titillium-bolditalic-webfont.woff') format('woff');
  22. font-style: italic;
  23. font-weight: 700;
  24. }
  25. strong {
  26. font-weight: bold;
  27. }
  28. * {
  29. box-sizing: border-box;
  30. }
  31. html {
  32. scroll-behavior: smooth;
  33. }
  34. body {
  35. background-color: #EEEEEE;
  36. background-image: url('../imgs/mascotte_left.svg'), url('../imgs/mascotte_right.svg'), linear-gradient(#EEEEEE, #3088D4);
  37. background-repeat: no-repeat;
  38. background-attachment: fixed;
  39. background-position: bottom left, bottom right, top left;
  40. background-size: 29%, 30%, auto;
  41. color: black;
  42. /* font-family: Roboto-slab, serif;*/
  43. font-family: Titillium, sans;
  44. font-size: 16pt;
  45. font-weight: 300;
  46. margin: 0;
  47. padding: 20pt;
  48. padding-top: 50pt;
  49. /* padding-bottom: 540px;*/
  50. }
  51. h1,h2,h3,h4,h5,h6 {
  52. font-family: Titillium, sans;
  53. font-weight: 700;
  54. text-align: center;
  55. margin: 1em 0 1em 0;
  56. }
  57. h1 {
  58. text-transform: uppercase;
  59. font-size: 28pt;
  60. text-shadow: 2px 2px 4px black;
  61. /* margin: 60pt;*/
  62. }
  63. /*h4, h5, h6 {
  64. text-align: left;
  65. }*/
  66. section, #header {
  67. background-color: rgba(255,255,255,0.92);
  68. padding: 20pt;
  69. /*padding-bottom: 2pt;*/
  70. padding-top: 2pt;
  71. margin-bottom: 20pt;
  72. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  73. border-radius: 9pt;
  74. }
  75. #header {
  76. color: white;
  77. background-image: /*url('../imgs/elephant_throwing_cs_logo.png'), */linear-gradient(rgba(117,175,227,1), rgba(182,213,240,1));
  78. /*background-repeat: no-repeat;
  79. background-position: bottom left;*/
  80. background-size: /*200px, */500pt;
  81. padding-bottom: 10px;
  82. padding-top: 10px;
  83. }
  84. .lev1sect {
  85. font-variant: small-caps;
  86. text-shadow: 2px 2px 4px black;
  87. margin-top: 40pt;
  88. background-image: linear-gradient(rgba(117,175,227,1), rgba(182,213,240,1));
  89. color: white;
  90. padding: 1px;
  91. border-radius: 9pt;
  92. }
  93. .rfp, .fp, .p, p {
  94. padding: 0;
  95. margin: 0.75em 0 0 0;
  96. }
  97. .rfp {
  98. margin: 0;
  99. }
  100. .p {
  101. text-indent: 1em;
  102. }
  103. ul {
  104. padding-left: 15pt;
  105. margin: 0.75em 0 0 0;
  106. }
  107. ul li {
  108. padding-left: 0;
  109. }
  110. a, .act {
  111. color: #CC0000;
  112. text-decoration: underline dotted;
  113. text-underline-offset: 3px;
  114. text-decoration-thickness: 1px;
  115. }
  116. a:hover, .act:hover {
  117. text-decoration: underline;
  118. }
  119. .act:hover {
  120. cursor: help;
  121. }
  122. a:active {
  123. color: #FF0000;
  124. }
  125. #content {
  126. width: 500pt;
  127. margin-right: auto;
  128. margin-left: auto;
  129. text-align: left;/* era justify */
  130. /* -webkit-hyphens: auto;
  131. -ms-hyphens: auto;
  132. hyphens: auto;*/
  133. z-index: 0;
  134. }
  135. #summlink {
  136. position: fixed;
  137. font-size: 12pt;
  138. background-color: rgba(0,0,0,0.89);
  139. color: #539CDD;
  140. height: 24px;
  141. width: 95pt;
  142. text-align: center;
  143. line-height: 21px;
  144. top: 40px;
  145. left: 0;
  146. margin: 0;
  147. padding: 0;
  148. z-index: 1;
  149. display: block;
  150. border-radius: 0 0 5px 0;
  151. /*transform-origin: bottom left;
  152. transform: rotate(90deg);*/
  153. }
  154. #summlink:hover {
  155. cursor: pointer;
  156. text-decoration: underline;
  157. background-color: rgba(0,0,0,0.78);
  158. }
  159. #summclose {
  160. position: fixed;
  161. width: 50px;
  162. height: 45px;
  163. background-color: rgba(0,0,0,0.89);
  164. padding: 0 5px 0 5px;
  165. border-radius: 0 0 5px 0;
  166. top: 40px;
  167. left: 300pt;
  168. z-index: 2;
  169. display: none;
  170. }
  171. #summclose:hover {
  172. cursor: pointer;
  173. }
  174. #summcont {
  175. background-color: rgba(0,0,0,0.89);
  176. position: fixed;
  177. width: 300pt;
  178. height: calc(100% - 40px);
  179. top: 40px;
  180. left: 0;
  181. margin: 0;
  182. padding: 0;
  183. display: none;
  184. z-index: 1;
  185. }
  186. #summary {
  187. font-family: Titillium, sans;
  188. font-size: 14pt;
  189. width: 100%;
  190. height: 100%;
  191. margin: 0;
  192. padding: 0;
  193. padding-right: 5pt;
  194. overflow: auto;
  195. overscroll-behavior: contain;
  196. }
  197. #summary a {
  198. color: #539CDD;
  199. }
  200. #summary a:active {
  201. color: #C0D9F2;
  202. }
  203. #summary ol {
  204. margin: 0;
  205. margin-left: 30px;
  206. padding: 0;
  207. counter-reset: item;
  208. }
  209. #summary ol li {
  210. display: block;
  211. position: relative;
  212. color: white;
  213. }
  214. #summary ol li:before {
  215. content: counters(item, '.') ':';
  216. counter-increment: item;
  217. position: absolute;
  218. margin-right: 100%;
  219. right: 5px; /* space between number and text */
  220. }
  221. .lev1summ, .prili {
  222. margin-top: 10pt;
  223. }
  224. .lev1summ a {
  225. font-variant: small-caps;
  226. font-weight: bold;
  227. }
  228. .lev2summ a {
  229. font-variant: normal;
  230. font-weight: normal;
  231. }
  232. .image, .imagel {
  233. display: block;
  234. max-width: 100%;
  235. /* box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);*/
  236. border-radius: 9pt;
  237. padding: 0;
  238. margin: 20pt auto 20pt auto;
  239. }
  240. .imagel {
  241. margin-bottom: 0;
  242. }
  243. .imager {
  244. display: block;
  245. float: right;
  246. margin: 0;
  247. margin-left: 10pt;
  248. margin-top: 5pt;
  249. /* box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);*/
  250. /* border-radius: 9pt;*/
  251. }
  252. .anchor {
  253. position: relative;
  254. top: -80px;
  255. display: block;
  256. visibility: hidden;
  257. }
  258. .scrwide {
  259. position: absolute;
  260. display: table;
  261. top: 0;
  262. left: 0;
  263. height: 100%;
  264. width: 100%;
  265. }
  266. .scrwidein {
  267. display: table-cell;
  268. vertical-align: middle;
  269. }
  270. .sectcont, .sectcontm {
  271. text-align: left;/* era justify */
  272. width: 500pt;
  273. margin-left: auto;
  274. margin-right: auto;
  275. margin-bottom: 0;
  276. margin-top: 40px;
  277. }
  278. .sectcontm {
  279. position: relative;
  280. margin-top: 60px;
  281. margin-bottom: 20px;
  282. }
  283. .magt {
  284. color: #0000DD;
  285. }
  286. .sep {
  287. font-size: 8pt;
  288. line-height: 8pt;
  289. width: 100%;
  290. height: 1em;
  291. }
  292. #transd {
  293. position: fixed;
  294. bottom: 10px;
  295. right: 10px;
  296. width: 166px;
  297. border-radius: 6px;
  298. background-color: rgba(0,0,0,0.89);
  299. color: white;
  300. text-align: center;
  301. font-size: 10pt;
  302. padding: 2px 6px 4px 6px;
  303. z-index: 4;
  304. }
  305. #transd a {
  306. color: #81d5ff;
  307. }
  308. .transc {
  309. color: #81d5ff;
  310. cursor: pointer;
  311. }
  312. .transc:hover {
  313. text-decoration: underline;
  314. }
  315. .invisible {
  316. display: none;
  317. }
  318. @media only screen and (max-width:540pt) {
  319. body {
  320. background-color: white;
  321. background-image: none;
  322. }
  323. #content, .sectcont, .sectcontm {
  324. width: 100%;
  325. max-width: 100%;
  326. text-align: left;
  327. -webkit-hyphens: none;
  328. -ms-hyphens: none;
  329. hyphens: none;
  330. }
  331. .sectcont, .sectcontm {
  332. padding: 20pt;
  333. }
  334. section {
  335. padding: 0pt;
  336. margin-bottom: 30pt;
  337. box-shadow: none;
  338. border-radius: 0;
  339. }
  340. #summlink {
  341. transform-origin: bottom left;
  342. transform: rotate(90deg) translateX(-24px);
  343. border-radius: 0 5px 0 0;
  344. }
  345. }
  346. @media only screen and (max-width:400pt) {
  347. #summcont, .image {
  348. width: 100%;
  349. }
  350. #summlink {
  351. width: 60pt;
  352. font-size: 12pt;
  353. line-height: 14pt;
  354. height: 16pt;
  355. transform-origin: bottom left;
  356. transform: rotate(90deg) translateX(-16pt);
  357. border-radius: 0 5px 0 0;
  358. }
  359. #summclose {
  360. background-color: transparent;
  361. top: 45px;
  362. left: auto;
  363. right: 5px;
  364. }
  365. }