My public website https://www.chameth.com/
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

style.css 60KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336
  1. @font-face {
  2. font-family: 'Aileron Regular';
  3. src: url('/res/fonts/aileron-regular-webfont.woff2') format('woff2'),
  4. url('/res/fonts/aileron-regular-webfont.woff') format('woff');
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'League Spartan';
  10. src: url('/res/fonts/leaguespartan-bold.eot');
  11. src: url('/res/fonts/leaguespartan-bold.eot?#iefix') format('embedded-opentype'),
  12. url('/res/fonts/leaguespartan-bold.woff2') format('woff2'),
  13. url('/res/fonts/leaguespartan-bold.woff') format('woff'),
  14. url('/res/fonts/leaguespartan-bold.ttf') format('truetype'),
  15. url('/res/fonts/leaguespartan-bold.svg#league_spartanbold') format('svg');
  16. font-weight: bold;
  17. font-style: normal;
  18. }
  19. /* Reset */
  20. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  21. margin: 0;
  22. padding: 0;
  23. border: 0;
  24. font-size: 100%;
  25. font: inherit;
  26. vertical-align: baseline;
  27. }
  28. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  29. display: block;
  30. }
  31. body {
  32. line-height: 1;
  33. }
  34. ol, ul {
  35. list-style: none;
  36. }
  37. blockquote, q {
  38. quotes: none;
  39. }
  40. blockquote:before, blockquote:after, q:before, q:after {
  41. content: '';
  42. content: none;
  43. }
  44. table {
  45. border-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. body {
  49. -webkit-text-size-adjust: none;
  50. }
  51. /* hire */
  52. .hire {
  53. background-color: #afb6d9;
  54. border-radius: 10px;
  55. padding: 1em 1.5em;
  56. margin-bottom: 2em;
  57. }
  58. .hire h3, .hire p {
  59. margin: 0;
  60. }
  61. .hire a, .hire a:hover, .hire a:active {
  62. color: #4565ad !important;
  63. }
  64. summary {
  65. cursor: pointer;
  66. }
  67. figcaption {
  68. text-align: center;
  69. font-style: italic;
  70. font-size: small;
  71. }
  72. /* Box Model */
  73. *, *:before, *:after {
  74. -moz-box-sizing: border-box;
  75. -webkit-box-sizing: border-box;
  76. box-sizing: border-box;
  77. }
  78. /* Containers */
  79. .container {
  80. margin-left: auto;
  81. margin-right: auto;
  82. }
  83. .container.\31 25\25 {
  84. width: 100%;
  85. max-width: 1200px;
  86. min-width: 960px;
  87. }
  88. .container.\37 5\25 {
  89. width: 720px;
  90. }
  91. .container.\35 0\25 {
  92. width: 480px;
  93. }
  94. .container.\32 5\25 {
  95. width: 240px;
  96. }
  97. .container {
  98. width: 960px;
  99. }
  100. @media screen and (max-width: 1800px) {
  101. .container.\31 25\25 {
  102. width: 100%;
  103. max-width: 1200px;
  104. min-width: 960px;
  105. }
  106. .container.\37 5\25 {
  107. width: 720px;
  108. }
  109. .container.\35 0\25 {
  110. width: 480px;
  111. }
  112. .container.\32 5\25 {
  113. width: 240px;
  114. }
  115. .container {
  116. width: 960px;
  117. }
  118. }
  119. @media screen and (max-width: 1280px) {
  120. .container.\31 25\25 {
  121. width: 100%;
  122. max-width: 1200px;
  123. min-width: 960px;
  124. }
  125. .container.\37 5\25 {
  126. width: 720px;
  127. }
  128. .container.\35 0\25 {
  129. width: 480px;
  130. }
  131. .container.\32 5\25 {
  132. width: 240px;
  133. }
  134. .container {
  135. width: 960px;
  136. }
  137. }
  138. @media screen and (max-width: 980px) {
  139. .container.\31 25\25 {
  140. width: 100%;
  141. max-width: 1200px;
  142. min-width: 960px;
  143. }
  144. .container.\37 5\25 {
  145. width: 720px;
  146. }
  147. .container.\35 0\25 {
  148. width: 480px;
  149. }
  150. .container.\32 5\25 {
  151. width: 240px;
  152. }
  153. .container {
  154. width: 960px;
  155. }
  156. }
  157. @media screen and (max-width: 736px) {
  158. .container.\31 25\25 {
  159. width: 100%;
  160. max-width: 1200px;
  161. min-width: 960px;
  162. }
  163. .container.\37 5\25 {
  164. width: 720px;
  165. }
  166. .container.\35 0\25 {
  167. width: 480px;
  168. }
  169. .container.\32 5\25 {
  170. width: 240px;
  171. }
  172. .container {
  173. width: 960px;
  174. }
  175. }
  176. @media screen and (max-width: 480px) {
  177. .container.\31 25\25 {
  178. width: 100%;
  179. max-width: 1200px;
  180. min-width: 960px;
  181. }
  182. .container.\37 5\25 {
  183. width: 720px;
  184. }
  185. .container.\35 0\25 {
  186. width: 480px;
  187. }
  188. .container.\32 5\25 {
  189. width: 240px;
  190. }
  191. .container {
  192. width: 960px;
  193. }
  194. }
  195. /* Grid */
  196. .row {
  197. border-bottom: solid 1px transparent;
  198. -moz-box-sizing: border-box;
  199. -webkit-box-sizing: border-box;
  200. box-sizing: border-box;
  201. }
  202. .row > * {
  203. float: left;
  204. -moz-box-sizing: border-box;
  205. -webkit-box-sizing: border-box;
  206. box-sizing: border-box;
  207. }
  208. .row:after, .row:before {
  209. content: '';
  210. display: block;
  211. clear: both;
  212. height: 0;
  213. }
  214. .row.uniform > * > :first-child {
  215. margin-top: 0;
  216. }
  217. .row.uniform > * > :last-child {
  218. margin-bottom: 0;
  219. }
  220. .row.\30 \25 > * {
  221. padding: 0 0 0 0em;
  222. }
  223. .row.\30 \25 {
  224. margin: 0 0 -1px 0em;
  225. }
  226. .row.uniform.\30 \25 > * {
  227. padding: 0em 0 0 0em;
  228. }
  229. .row.uniform.\30 \25 {
  230. margin: 0em 0 -1px 0em;
  231. }
  232. .row > * {
  233. padding: 0 0 0 2.5em;
  234. }
  235. .row {
  236. margin: 0 0 -1px -2.5em;
  237. }
  238. .row.uniform > * {
  239. padding: 2.5em 0 0 2.5em;
  240. }
  241. .row.uniform {
  242. margin: -2.5em 0 -1px -2.5em;
  243. }
  244. .row.\32 00\25 > * {
  245. padding: 0 0 0 5em;
  246. }
  247. .row.\32 00\25 {
  248. margin: 0 0 -1px -5em;
  249. }
  250. .row.uniform.\32 00\25 > * {
  251. padding: 5em 0 0 5em;
  252. }
  253. .row.uniform.\32 00\25 {
  254. margin: -5em 0 -1px -5em;
  255. }
  256. .row.\31 50\25 > * {
  257. padding: 0 0 0 3.75em;
  258. }
  259. .row.\31 50\25 {
  260. margin: 0 0 -1px -3.75em;
  261. }
  262. .row.uniform.\31 50\25 > * {
  263. padding: 3.75em 0 0 3.75em;
  264. }
  265. .row.uniform.\31 50\25 {
  266. margin: -3.75em 0 -1px -3.75em;
  267. }
  268. .row.\35 0\25 > * {
  269. padding: 0 0 0 1.25em;
  270. }
  271. .row.\35 0\25 {
  272. margin: 0 0 -1px -1.25em;
  273. }
  274. .row.uniform.\35 0\25 > * {
  275. padding: 1.25em 0 0 1.25em;
  276. }
  277. .row.uniform.\35 0\25 {
  278. margin: -1.25em 0 -1px -1.25em;
  279. }
  280. .row.\32 5\25 > * {
  281. padding: 0 0 0 0.625em;
  282. }
  283. .row.\32 5\25 {
  284. margin: 0 0 -1px -0.625em;
  285. }
  286. .row.uniform.\32 5\25 > * {
  287. padding: 0.625em 0 0 0.625em;
  288. }
  289. .row.uniform.\32 5\25 {
  290. margin: -0.625em 0 -1px -0.625em;
  291. }
  292. .\31 2u, .\31 2u\24 {
  293. width: 100%;
  294. clear: none;
  295. margin-left: 0;
  296. }
  297. .\31 1u, .\31 1u\24 {
  298. width: 91.6666666667%;
  299. clear: none;
  300. margin-left: 0;
  301. }
  302. .\31 0u, .\31 0u\24 {
  303. width: 83.3333333333%;
  304. clear: none;
  305. margin-left: 0;
  306. }
  307. .\39 u, .\39 u\24 {
  308. width: 75%;
  309. clear: none;
  310. margin-left: 0;
  311. }
  312. .\38 u, .\38 u\24 {
  313. width: 66.6666666667%;
  314. clear: none;
  315. margin-left: 0;
  316. }
  317. .\37 u, .\37 u\24 {
  318. width: 58.3333333333%;
  319. clear: none;
  320. margin-left: 0;
  321. }
  322. .\36 u, .\36 u\24 {
  323. width: 50%;
  324. clear: none;
  325. margin-left: 0;
  326. }
  327. .\35 u, .\35 u\24 {
  328. width: 41.6666666667%;
  329. clear: none;
  330. margin-left: 0;
  331. }
  332. .\34 u, .\34 u\24 {
  333. width: 33.3333333333%;
  334. clear: none;
  335. margin-left: 0;
  336. }
  337. .\33 u, .\33 u\24 {
  338. width: 25%;
  339. clear: none;
  340. margin-left: 0;
  341. }
  342. .\32 u, .\32 u\24 {
  343. width: 16.6666666667%;
  344. clear: none;
  345. margin-left: 0;
  346. }
  347. .\31 u, .\31 u\24 {
  348. width: 8.3333333333%;
  349. clear: none;
  350. margin-left: 0;
  351. }
  352. .\31 2u\24 + *,
  353. .\31 1u\24 + *,
  354. .\31 0u\24 + *,
  355. .\39 u\24 + *,
  356. .\38 u\24 + *,
  357. .\37 u\24 + *,
  358. .\36 u\24 + *,
  359. .\35 u\24 + *,
  360. .\34 u\24 + *,
  361. .\33 u\24 + *,
  362. .\32 u\24 + *,
  363. .\31 u\24 + * {
  364. clear: left;
  365. }
  366. .\-11u {
  367. margin-left: 91.66667%;
  368. }
  369. .\-10u {
  370. margin-left: 83.33333%;
  371. }
  372. .\-9u {
  373. margin-left: 75%;
  374. }
  375. .\-8u {
  376. margin-left: 66.66667%;
  377. }
  378. .\-7u {
  379. margin-left: 58.33333%;
  380. }
  381. .\-6u {
  382. margin-left: 50%;
  383. }
  384. .\-5u {
  385. margin-left: 41.66667%;
  386. }
  387. .\-4u {
  388. margin-left: 33.33333%;
  389. }
  390. .\-3u {
  391. margin-left: 25%;
  392. }
  393. .\-2u {
  394. margin-left: 16.66667%;
  395. }
  396. .\-1u {
  397. margin-left: 8.33333%;
  398. }
  399. @media screen and (max-width: 1800px) {
  400. .row > * {
  401. padding: 0 0 0 2.5em;
  402. }
  403. .row {
  404. margin: 0 0 -1px -2.5em;
  405. }
  406. .row.uniform > * {
  407. padding: 2.5em 0 0 2.5em;
  408. }
  409. .row.uniform {
  410. margin: -2.5em 0 -1px -2.5em;
  411. }
  412. .row.\32 00\25 > * {
  413. padding: 0 0 0 5em;
  414. }
  415. .row.\32 00\25 {
  416. margin: 0 0 -1px -5em;
  417. }
  418. .row.uniform.\32 00\25 > * {
  419. padding: 5em 0 0 5em;
  420. }
  421. .row.uniform.\32 00\25 {
  422. margin: -5em 0 -1px -5em;
  423. }
  424. .row.\31 50\25 > * {
  425. padding: 0 0 0 3.75em;
  426. }
  427. .row.\31 50\25 {
  428. margin: 0 0 -1px -3.75em;
  429. }
  430. .row.uniform.\31 50\25 > * {
  431. padding: 3.75em 0 0 3.75em;
  432. }
  433. .row.uniform.\31 50\25 {
  434. margin: -3.75em 0 -1px -3.75em;
  435. }
  436. .row.\35 0\25 > * {
  437. padding: 0 0 0 1.25em;
  438. }
  439. .row.\35 0\25 {
  440. margin: 0 0 -1px -1.25em;
  441. }
  442. .row.uniform.\35 0\25 > * {
  443. padding: 1.25em 0 0 1.25em;
  444. }
  445. .row.uniform.\35 0\25 {
  446. margin: -1.25em 0 -1px -1.25em;
  447. }
  448. .row.\32 5\25 > * {
  449. padding: 0 0 0 0.625em;
  450. }
  451. .row.\32 5\25 {
  452. margin: 0 0 -1px -0.625em;
  453. }
  454. .row.uniform.\32 5\25 > * {
  455. padding: 0.625em 0 0 0.625em;
  456. }
  457. .row.uniform.\32 5\25 {
  458. margin: -0.625em 0 -1px -0.625em;
  459. }
  460. .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
  461. width: 100%;
  462. clear: none;
  463. margin-left: 0;
  464. }
  465. .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
  466. width: 91.6666666667%;
  467. clear: none;
  468. margin-left: 0;
  469. }
  470. .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
  471. width: 83.3333333333%;
  472. clear: none;
  473. margin-left: 0;
  474. }
  475. .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
  476. width: 75%;
  477. clear: none;
  478. margin-left: 0;
  479. }
  480. .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
  481. width: 66.6666666667%;
  482. clear: none;
  483. margin-left: 0;
  484. }
  485. .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
  486. width: 58.3333333333%;
  487. clear: none;
  488. margin-left: 0;
  489. }
  490. .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
  491. width: 50%;
  492. clear: none;
  493. margin-left: 0;
  494. }
  495. .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
  496. width: 41.6666666667%;
  497. clear: none;
  498. margin-left: 0;
  499. }
  500. .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
  501. width: 33.3333333333%;
  502. clear: none;
  503. margin-left: 0;
  504. }
  505. .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
  506. width: 25%;
  507. clear: none;
  508. margin-left: 0;
  509. }
  510. .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
  511. width: 16.6666666667%;
  512. clear: none;
  513. margin-left: 0;
  514. }
  515. .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
  516. width: 8.3333333333%;
  517. clear: none;
  518. margin-left: 0;
  519. }
  520. .\31 2u\24\28xlarge\29 + *,
  521. .\31 1u\24\28xlarge\29 + *,
  522. .\31 0u\24\28xlarge\29 + *,
  523. .\39 u\24\28xlarge\29 + *,
  524. .\38 u\24\28xlarge\29 + *,
  525. .\37 u\24\28xlarge\29 + *,
  526. .\36 u\24\28xlarge\29 + *,
  527. .\35 u\24\28xlarge\29 + *,
  528. .\34 u\24\28xlarge\29 + *,
  529. .\33 u\24\28xlarge\29 + *,
  530. .\32 u\24\28xlarge\29 + *,
  531. .\31 u\24\28xlarge\29 + * {
  532. clear: left;
  533. }
  534. .\-11u\28xlarge\29 {
  535. margin-left: 91.66667%;
  536. }
  537. .\-10u\28xlarge\29 {
  538. margin-left: 83.33333%;
  539. }
  540. .\-9u\28xlarge\29 {
  541. margin-left: 75%;
  542. }
  543. .\-8u\28xlarge\29 {
  544. margin-left: 66.66667%;
  545. }
  546. .\-7u\28xlarge\29 {
  547. margin-left: 58.33333%;
  548. }
  549. .\-6u\28xlarge\29 {
  550. margin-left: 50%;
  551. }
  552. .\-5u\28xlarge\29 {
  553. margin-left: 41.66667%;
  554. }
  555. .\-4u\28xlarge\29 {
  556. margin-left: 33.33333%;
  557. }
  558. .\-3u\28xlarge\29 {
  559. margin-left: 25%;
  560. }
  561. .\-2u\28xlarge\29 {
  562. margin-left: 16.66667%;
  563. }
  564. .\-1u\28xlarge\29 {
  565. margin-left: 8.33333%;
  566. }
  567. }
  568. @media screen and (max-width: 1280px) {
  569. .row > * {
  570. padding: 0 0 0 2em;
  571. }
  572. .row {
  573. margin: 0 0 -1px -2em;
  574. }
  575. .row.uniform > * {
  576. padding: 2em 0 0 2em;
  577. }
  578. .row.uniform {
  579. margin: -2em 0 -1px -2em;
  580. }
  581. .row.\32 00\25 > * {
  582. padding: 0 0 0 4em;
  583. }
  584. .row.\32 00\25 {
  585. margin: 0 0 -1px -4em;
  586. }
  587. .row.uniform.\32 00\25 > * {
  588. padding: 4em 0 0 4em;
  589. }
  590. .row.uniform.\32 00\25 {
  591. margin: -4em 0 -1px -4em;
  592. }
  593. .row.\31 50\25 > * {
  594. padding: 0 0 0 3em;
  595. }
  596. .row.\31 50\25 {
  597. margin: 0 0 -1px -3em;
  598. }
  599. .row.uniform.\31 50\25 > * {
  600. padding: 3em 0 0 3em;
  601. }
  602. .row.uniform.\31 50\25 {
  603. margin: -3em 0 -1px -3em;
  604. }
  605. .row.\35 0\25 > * {
  606. padding: 0 0 0 1em;
  607. }
  608. .row.\35 0\25 {
  609. margin: 0 0 -1px -1em;
  610. }
  611. .row.uniform.\35 0\25 > * {
  612. padding: 1em 0 0 1em;
  613. }
  614. .row.uniform.\35 0\25 {
  615. margin: -1em 0 -1px -1em;
  616. }
  617. .row.\32 5\25 > * {
  618. padding: 0 0 0 0.5em;
  619. }
  620. .row.\32 5\25 {
  621. margin: 0 0 -1px -0.5em;
  622. }
  623. .row.uniform.\32 5\25 > * {
  624. padding: 0.5em 0 0 0.5em;
  625. }
  626. .row.uniform.\32 5\25 {
  627. margin: -0.5em 0 -1px -0.5em;
  628. }
  629. .\31 2u\28large\29, .\31 2u\24\28large\29 {
  630. width: 100%;
  631. clear: none;
  632. margin-left: 0;
  633. }
  634. .\31 1u\28large\29, .\31 1u\24\28large\29 {
  635. width: 91.6666666667%;
  636. clear: none;
  637. margin-left: 0;
  638. }
  639. .\31 0u\28large\29, .\31 0u\24\28large\29 {
  640. width: 83.3333333333%;
  641. clear: none;
  642. margin-left: 0;
  643. }
  644. .\39 u\28large\29, .\39 u\24\28large\29 {
  645. width: 75%;
  646. clear: none;
  647. margin-left: 0;
  648. }
  649. .\38 u\28large\29, .\38 u\24\28large\29 {
  650. width: 66.6666666667%;
  651. clear: none;
  652. margin-left: 0;
  653. }
  654. .\37 u\28large\29, .\37 u\24\28large\29 {
  655. width: 58.3333333333%;
  656. clear: none;
  657. margin-left: 0;
  658. }
  659. .\36 u\28large\29, .\36 u\24\28large\29 {
  660. width: 50%;
  661. clear: none;
  662. margin-left: 0;
  663. }
  664. .\35 u\28large\29, .\35 u\24\28large\29 {
  665. width: 41.6666666667%;
  666. clear: none;
  667. margin-left: 0;
  668. }
  669. .\34 u\28large\29, .\34 u\24\28large\29 {
  670. width: 33.3333333333%;
  671. clear: none;
  672. margin-left: 0;
  673. }
  674. .\33 u\28large\29, .\33 u\24\28large\29 {
  675. width: 25%;
  676. clear: none;
  677. margin-left: 0;
  678. }
  679. .\32 u\28large\29, .\32 u\24\28large\29 {
  680. width: 16.6666666667%;
  681. clear: none;
  682. margin-left: 0;
  683. }
  684. .\31 u\28large\29, .\31 u\24\28large\29 {
  685. width: 8.3333333333%;
  686. clear: none;
  687. margin-left: 0;
  688. }
  689. .\31 2u\24\28large\29 + *,
  690. .\31 1u\24\28large\29 + *,
  691. .\31 0u\24\28large\29 + *,
  692. .\39 u\24\28large\29 + *,
  693. .\38 u\24\28large\29 + *,
  694. .\37 u\24\28large\29 + *,
  695. .\36 u\24\28large\29 + *,
  696. .\35 u\24\28large\29 + *,
  697. .\34 u\24\28large\29 + *,
  698. .\33 u\24\28large\29 + *,
  699. .\32 u\24\28large\29 + *,
  700. .\31 u\24\28large\29 + * {
  701. clear: left;
  702. }
  703. .\-11u\28large\29 {
  704. margin-left: 91.66667%;
  705. }
  706. .\-10u\28large\29 {
  707. margin-left: 83.33333%;
  708. }
  709. .\-9u\28large\29 {
  710. margin-left: 75%;
  711. }
  712. .\-8u\28large\29 {
  713. margin-left: 66.66667%;
  714. }
  715. .\-7u\28large\29 {
  716. margin-left: 58.33333%;
  717. }
  718. .\-6u\28large\29 {
  719. margin-left: 50%;
  720. }
  721. .\-5u\28large\29 {
  722. margin-left: 41.66667%;
  723. }
  724. .\-4u\28large\29 {
  725. margin-left: 33.33333%;
  726. }
  727. .\-3u\28large\29 {
  728. margin-left: 25%;
  729. }
  730. .\-2u\28large\29 {
  731. margin-left: 16.66667%;
  732. }
  733. .\-1u\28large\29 {
  734. margin-left: 8.33333%;
  735. }
  736. }
  737. @media screen and (max-width: 980px) {
  738. .row > * {
  739. padding: 0 0 0 2em;
  740. }
  741. .row {
  742. margin: 0 0 -1px -2em;
  743. }
  744. .row.uniform > * {
  745. padding: 2em 0 0 2em;
  746. }
  747. .row.uniform {
  748. margin: -2em 0 -1px -2em;
  749. }
  750. .row.\32 00\25 > * {
  751. padding: 0 0 0 4em;
  752. }
  753. .row.\32 00\25 {
  754. margin: 0 0 -1px -4em;
  755. }
  756. .row.uniform.\32 00\25 > * {
  757. padding: 4em 0 0 4em;
  758. }
  759. .row.uniform.\32 00\25 {
  760. margin: -4em 0 -1px -4em;
  761. }
  762. .row.\31 50\25 > * {
  763. padding: 0 0 0 3em;
  764. }
  765. .row.\31 50\25 {
  766. margin: 0 0 -1px -3em;
  767. }
  768. .row.uniform.\31 50\25 > * {
  769. padding: 3em 0 0 3em;
  770. }
  771. .row.uniform.\31 50\25 {
  772. margin: -3em 0 -1px -3em;
  773. }
  774. .row.\35 0\25 > * {
  775. padding: 0 0 0 1em;
  776. }
  777. .row.\35 0\25 {
  778. margin: 0 0 -1px -1em;
  779. }
  780. .row.uniform.\35 0\25 > * {
  781. padding: 1em 0 0 1em;
  782. }
  783. .row.uniform.\35 0\25 {
  784. margin: -1em 0 -1px -1em;
  785. }
  786. .row.\32 5\25 > * {
  787. padding: 0 0 0 0.5em;
  788. }
  789. .row.\32 5\25 {
  790. margin: 0 0 -1px -0.5em;
  791. }
  792. .row.uniform.\32 5\25 > * {
  793. padding: 0.5em 0 0 0.5em;
  794. }
  795. .row.uniform.\32 5\25 {
  796. margin: -0.5em 0 -1px -0.5em;
  797. }
  798. .\31 2u\28medium\29, .\31 2u\24\28medium\29 {
  799. width: 100%;
  800. clear: none;
  801. margin-left: 0;
  802. }
  803. .\31 1u\28medium\29, .\31 1u\24\28medium\29 {
  804. width: 91.6666666667%;
  805. clear: none;
  806. margin-left: 0;
  807. }
  808. .\31 0u\28medium\29, .\31 0u\24\28medium\29 {
  809. width: 83.3333333333%;
  810. clear: none;
  811. margin-left: 0;
  812. }
  813. .\39 u\28medium\29, .\39 u\24\28medium\29 {
  814. width: 75%;
  815. clear: none;
  816. margin-left: 0;
  817. }
  818. .\38 u\28medium\29, .\38 u\24\28medium\29 {
  819. width: 66.6666666667%;
  820. clear: none;
  821. margin-left: 0;
  822. }
  823. .\37 u\28medium\29, .\37 u\24\28medium\29 {
  824. width: 58.3333333333%;
  825. clear: none;
  826. margin-left: 0;
  827. }
  828. .\36 u\28medium\29, .\36 u\24\28medium\29 {
  829. width: 50%;
  830. clear: none;
  831. margin-left: 0;
  832. }
  833. .\35 u\28medium\29, .\35 u\24\28medium\29 {
  834. width: 41.6666666667%;
  835. clear: none;
  836. margin-left: 0;
  837. }
  838. .\34 u\28medium\29, .\34 u\24\28medium\29 {
  839. width: 33.3333333333%;
  840. clear: none;
  841. margin-left: 0;
  842. }
  843. .\33 u\28medium\29, .\33 u\24\28medium\29 {
  844. width: 25%;
  845. clear: none;
  846. margin-left: 0;
  847. }
  848. .\32 u\28medium\29, .\32 u\24\28medium\29 {
  849. width: 16.6666666667%;
  850. clear: none;
  851. margin-left: 0;
  852. }
  853. .\31 u\28medium\29, .\31 u\24\28medium\29 {
  854. width: 8.3333333333%;
  855. clear: none;
  856. margin-left: 0;
  857. }
  858. .\31 2u\24\28medium\29 + *,
  859. .\31 1u\24\28medium\29 + *,
  860. .\31 0u\24\28medium\29 + *,
  861. .\39 u\24\28medium\29 + *,
  862. .\38 u\24\28medium\29 + *,
  863. .\37 u\24\28medium\29 + *,
  864. .\36 u\24\28medium\29 + *,
  865. .\35 u\24\28medium\29 + *,
  866. .\34 u\24\28medium\29 + *,
  867. .\33 u\24\28medium\29 + *,
  868. .\32 u\24\28medium\29 + *,
  869. .\31 u\24\28medium\29 + * {
  870. clear: left;
  871. }
  872. .\-11u\28medium\29 {
  873. margin-left: 91.66667%;
  874. }
  875. .\-10u\28medium\29 {
  876. margin-left: 83.33333%;
  877. }
  878. .\-9u\28medium\29 {
  879. margin-left: 75%;
  880. }
  881. .\-8u\28medium\29 {
  882. margin-left: 66.66667%;
  883. }
  884. .\-7u\28medium\29 {
  885. margin-left: 58.33333%;
  886. }
  887. .\-6u\28medium\29 {
  888. margin-left: 50%;
  889. }
  890. .\-5u\28medium\29 {
  891. margin-left: 41.66667%;
  892. }
  893. .\-4u\28medium\29 {
  894. margin-left: 33.33333%;
  895. }
  896. .\-3u\28medium\29 {
  897. margin-left: 25%;
  898. }
  899. .\-2u\28medium\29 {
  900. margin-left: 16.66667%;
  901. }
  902. .\-1u\28medium\29 {
  903. margin-left: 8.33333%;
  904. }
  905. }
  906. @media screen and (max-width: 736px) {
  907. .row > * {
  908. padding: 0 0 0 1.5em;
  909. }
  910. .row {
  911. margin: 0 0 -1px -1.5em;
  912. }
  913. .row.uniform > * {
  914. padding: 1.5em 0 0 1.5em;
  915. }
  916. .row.uniform {
  917. margin: -1.5em 0 -1px -1.5em;
  918. }
  919. .row.\32 00\25 > * {
  920. padding: 0 0 0 3em;
  921. }
  922. .row.\32 00\25 {
  923. margin: 0 0 -1px -3em;
  924. }
  925. .row.uniform.\32 00\25 > * {
  926. padding: 3em 0 0 3em;
  927. }
  928. .row.uniform.\32 00\25 {
  929. margin: -3em 0 -1px -3em;
  930. }
  931. .row.\31 50\25 > * {
  932. padding: 0 0 0 2.25em;
  933. }
  934. .row.\31 50\25 {
  935. margin: 0 0 -1px -2.25em;
  936. }
  937. .row.uniform.\31 50\25 > * {
  938. padding: 2.25em 0 0 2.25em;
  939. }
  940. .row.uniform.\31 50\25 {
  941. margin: -2.25em 0 -1px -2.25em;
  942. }
  943. .row.\35 0\25 > * {
  944. padding: 0 0 0 0.75em;
  945. }
  946. .row.\35 0\25 {
  947. margin: 0 0 -1px -0.75em;
  948. }
  949. .row.uniform.\35 0\25 > * {
  950. padding: 0.75em 0 0 0.75em;
  951. }
  952. .row.uniform.\35 0\25 {
  953. margin: -0.75em 0 -1px -0.75em;
  954. }
  955. .row.\32 5\25 > * {
  956. padding: 0 0 0 0.375em;
  957. }
  958. .row.\32 5\25 {
  959. margin: 0 0 -1px -0.375em;
  960. }
  961. .row.uniform.\32 5\25 > * {
  962. padding: 0.375em 0 0 0.375em;
  963. }
  964. .row.uniform.\32 5\25 {
  965. margin: -0.375em 0 -1px -0.375em;
  966. }
  967. .\31 2u\28small\29, .\31 2u\24\28small\29 {
  968. width: 100%;
  969. clear: none;
  970. margin-left: 0;
  971. }
  972. .\31 1u\28small\29, .\31 1u\24\28small\29 {
  973. width: 91.6666666667%;
  974. clear: none;
  975. margin-left: 0;
  976. }
  977. .\31 0u\28small\29, .\31 0u\24\28small\29 {
  978. width: 83.3333333333%;
  979. clear: none;
  980. margin-left: 0;
  981. }
  982. .\39 u\28small\29, .\39 u\24\28small\29 {
  983. width: 75%;
  984. clear: none;
  985. margin-left: 0;
  986. }
  987. .\38 u\28small\29, .\38 u\24\28small\29 {
  988. width: 66.6666666667%;
  989. clear: none;
  990. margin-left: 0;
  991. }
  992. .\37 u\28small\29, .\37 u\24\28small\29 {
  993. width: 58.3333333333%;
  994. clear: none;
  995. margin-left: 0;
  996. }
  997. .\36 u\28small\29, .\36 u\24\28small\29 {
  998. width: 50%;
  999. clear: none;
  1000. margin-left: 0;
  1001. }
  1002. .\35 u\28small\29, .\35 u\24\28small\29 {
  1003. width: 41.6666666667%;
  1004. clear: none;
  1005. margin-left: 0;
  1006. }
  1007. .\34 u\28small\29, .\34 u\24\28small\29 {
  1008. width: 33.3333333333%;
  1009. clear: none;
  1010. margin-left: 0;
  1011. }
  1012. .\33 u\28small\29, .\33 u\24\28small\29 {
  1013. width: 25%;
  1014. clear: none;
  1015. margin-left: 0;
  1016. }
  1017. .\32 u\28small\29, .\32 u\24\28small\29 {
  1018. width: 16.6666666667%;
  1019. clear: none;
  1020. margin-left: 0;
  1021. }
  1022. .\31 u\28small\29, .\31 u\24\28small\29 {
  1023. width: 8.3333333333%;
  1024. clear: none;
  1025. margin-left: 0;
  1026. }
  1027. .\31 2u\24\28small\29 + *,
  1028. .\31 1u\24\28small\29 + *,
  1029. .\31 0u\24\28small\29 + *,
  1030. .\39 u\24\28small\29 + *,
  1031. .\38 u\24\28small\29 + *,
  1032. .\37 u\24\28small\29 + *,
  1033. .\36 u\24\28small\29 + *,
  1034. .\35 u\24\28small\29 + *,
  1035. .\34 u\24\28small\29 + *,
  1036. .\33 u\24\28small\29 + *,
  1037. .\32 u\24\28small\29 + *,
  1038. .\31 u\24\28small\29 + * {
  1039. clear: left;
  1040. }
  1041. .\-11u\28small\29 {
  1042. margin-left: 91.66667%;
  1043. }
  1044. .\-10u\28small\29 {
  1045. margin-left: 83.33333%;
  1046. }
  1047. .\-9u\28small\29 {
  1048. margin-left: 75%;
  1049. }
  1050. .\-8u\28small\29 {
  1051. margin-left: 66.66667%;
  1052. }
  1053. .\-7u\28small\29 {
  1054. margin-left: 58.33333%;
  1055. }
  1056. .\-6u\28small\29 {
  1057. margin-left: 50%;
  1058. }
  1059. .\-5u\28small\29 {
  1060. margin-left: 41.66667%;
  1061. }
  1062. .\-4u\28small\29 {
  1063. margin-left: 33.33333%;
  1064. }
  1065. .\-3u\28small\29 {
  1066. margin-left: 25%;
  1067. }
  1068. .\-2u\28small\29 {
  1069. margin-left: 16.66667%;
  1070. }
  1071. .\-1u\28small\29 {
  1072. margin-left: 8.33333%;
  1073. }
  1074. }
  1075. @media screen and (max-width: 480px) {
  1076. .row > * {
  1077. padding: 0 0 0 1.5em;
  1078. }
  1079. .row {
  1080. margin: 0 0 -1px -1.5em;
  1081. }
  1082. .row.uniform > * {
  1083. padding: 1.5em 0 0 1.5em;
  1084. }
  1085. .row.uniform {
  1086. margin: -1.5em 0 -1px -1.5em;
  1087. }
  1088. .row.\32 00\25 > * {
  1089. padding: 0 0 0 3em;
  1090. }
  1091. .row.\32 00\25 {
  1092. margin: 0 0 -1px -3em;
  1093. }
  1094. .row.uniform.\32 00\25 > * {
  1095. padding: 3em 0 0 3em;
  1096. }
  1097. .row.uniform.\32 00\25 {
  1098. margin: -3em 0 -1px -3em;
  1099. }
  1100. .row.\31 50\25 > * {
  1101. padding: 0 0 0 2.25em;
  1102. }
  1103. .row.\31 50\25 {
  1104. margin: 0 0 -1px -2.25em;
  1105. }
  1106. .row.uniform.\31 50\25 > * {
  1107. padding: 2.25em 0 0 2.25em;
  1108. }
  1109. .row.uniform.\31 50\25 {
  1110. margin: -2.25em 0 -1px -2.25em;
  1111. }
  1112. .row.\35 0\25 > * {
  1113. padding: 0 0 0 0.75em;
  1114. }
  1115. .row.\35 0\25 {
  1116. margin: 0 0 -1px -0.75em;
  1117. }
  1118. .row.uniform.\35 0\25 > * {
  1119. padding: 0.75em 0 0 0.75em;
  1120. }
  1121. .row.uniform.\35 0\25 {
  1122. margin: -0.75em 0 -1px -0.75em;
  1123. }
  1124. .row.\32 5\25 > * {
  1125. padding: 0 0 0 0.375em;
  1126. }
  1127. .row.\32 5\25 {
  1128. margin: 0 0 -1px -0.375em;
  1129. }
  1130. .row.uniform.\32 5\25 > * {
  1131. padding: 0.375em 0 0 0.375em;
  1132. }
  1133. .row.uniform.\32 5\25 {
  1134. margin: -0.375em 0 -1px -0.375em;
  1135. }
  1136. .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
  1137. width: 100%;
  1138. clear: none;
  1139. margin-left: 0;
  1140. }
  1141. .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
  1142. width: 91.6666666667%;
  1143. clear: none;
  1144. margin-left: 0;
  1145. }
  1146. .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
  1147. width: 83.3333333333%;
  1148. clear: none;
  1149. margin-left: 0;
  1150. }
  1151. .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
  1152. width: 75%;
  1153. clear: none;
  1154. margin-left: 0;
  1155. }
  1156. .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
  1157. width: 66.6666666667%;
  1158. clear: none;
  1159. margin-left: 0;
  1160. }
  1161. .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
  1162. width: 58.3333333333%;
  1163. clear: none;
  1164. margin-left: 0;
  1165. }
  1166. .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
  1167. width: 50%;
  1168. clear: none;
  1169. margin-left: 0;
  1170. }
  1171. .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
  1172. width: 41.6666666667%;
  1173. clear: none;
  1174. margin-left: 0;
  1175. }
  1176. .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
  1177. width: 33.3333333333%;
  1178. clear: none;
  1179. margin-left: 0;
  1180. }
  1181. .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
  1182. width: 25%;
  1183. clear: none;
  1184. margin-left: 0;
  1185. }
  1186. .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
  1187. width: 16.6666666667%;
  1188. clear: none;
  1189. margin-left: 0;
  1190. }
  1191. .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
  1192. width: 8.3333333333%;
  1193. clear: none;
  1194. margin-left: 0;
  1195. }
  1196. .\31 2u\24\28xsmall\29 + *,
  1197. .\31 1u\24\28xsmall\29 + *,
  1198. .\31 0u\24\28xsmall\29 + *,
  1199. .\39 u\24\28xsmall\29 + *,
  1200. .\38 u\24\28xsmall\29 + *,
  1201. .\37 u\24\28xsmall\29 + *,
  1202. .\36 u\24\28xsmall\29 + *,
  1203. .\35 u\24\28xsmall\29 + *,
  1204. .\34 u\24\28xsmall\29 + *,
  1205. .\33 u\24\28xsmall\29 + *,
  1206. .\32 u\24\28xsmall\29 + *,
  1207. .\31 u\24\28xsmall\29 + * {
  1208. clear: left;
  1209. }
  1210. .\-11u\28xsmall\29 {
  1211. margin-left: 91.66667%;
  1212. }
  1213. .\-10u\28xsmall\29 {
  1214. margin-left: 83.33333%;
  1215. }
  1216. .\-9u\28xsmall\29 {
  1217. margin-left: 75%;
  1218. }
  1219. .\-8u\28xsmall\29 {
  1220. margin-left: 66.66667%;
  1221. }
  1222. .\-7u\28xsmall\29 {
  1223. margin-left: 58.33333%;
  1224. }
  1225. .\-6u\28xsmall\29 {
  1226. margin-left: 50%;
  1227. }
  1228. .\-5u\28xsmall\29 {
  1229. margin-left: 41.66667%;
  1230. }
  1231. .\-4u\28xsmall\29 {
  1232. margin-left: 33.33333%;
  1233. }
  1234. .\-3u\28xsmall\29 {
  1235. margin-left: 25%;
  1236. }
  1237. .\-2u\28xsmall\29 {
  1238. margin-left: 16.66667%;
  1239. }
  1240. .\-1u\28xsmall\29 {
  1241. margin-left: 8.33333%;
  1242. }
  1243. }
  1244. /* Basic */
  1245. body {
  1246. background: #fff;
  1247. min-width: 400px;
  1248. }
  1249. body.is-loading *, body.is-loading *:before, body.is-loading *:after {
  1250. -moz-animation: none !important;
  1251. -webkit-animation: none !important;
  1252. -ms-animation: none !important;
  1253. animation: none !important;
  1254. -moz-transition: none !important;
  1255. -webkit-transition: none !important;
  1256. -ms-transition: none !important;
  1257. transition: none !important;
  1258. }
  1259. body, input, select, textarea {
  1260. color: #565656;
  1261. font-family: "Aileron Regular", Helvetica, sans-serif;
  1262. font-size: 16pt;
  1263. font-weight: 400;
  1264. line-height: 1.75em;
  1265. }
  1266. a {
  1267. color: #49bf9d;
  1268. text-decoration-skip: ink;
  1269. }
  1270. a:hover {
  1271. border-bottom-color: transparent;
  1272. color: #49bf9d !important;
  1273. }
  1274. strong, b {
  1275. color: #787878;
  1276. font-weight: 400;
  1277. }
  1278. em, i {
  1279. font-style: italic;
  1280. }
  1281. p {
  1282. margin: 0 0 2em 0;
  1283. }
  1284. h1, h2, h3, h4, h5, h6 {
  1285. color: #565656;
  1286. font-weight: 800;
  1287. font-family: "League Spartan", sans-serif;
  1288. .text-transform: uppercase;
  1289. line-height: 1em;
  1290. margin: 0 0 1em 0;
  1291. }
  1292. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  1293. -moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1294. -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1295. -ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1296. transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1297. color: inherit;
  1298. }
  1299. h1 {
  1300. font-size: 2em;
  1301. line-height: 1.5em;
  1302. }
  1303. h2 {
  1304. font-size: 1.5em;
  1305. line-height: 1.5em;
  1306. }
  1307. h3 {
  1308. font-size: 1.1em;
  1309. line-height: 1.5em;
  1310. }
  1311. h4 {
  1312. font-size: 0.9em;
  1313. line-height: 1.5em;
  1314. }
  1315. h5 {
  1316. font-size: 0.7em;
  1317. line-height: 1.5em;
  1318. }
  1319. h6 {
  1320. font-size: 0.7em;
  1321. line-height: 1.5em;
  1322. }
  1323. sub {
  1324. font-size: 0.8em;
  1325. position: relative;
  1326. top: 0.5em;
  1327. }
  1328. sup {
  1329. font-size: 0.8em;
  1330. position: relative;
  1331. top: -0.5em;
  1332. }
  1333. hr {
  1334. border: 0;
  1335. border-bottom: solid 2px #efefef;
  1336. margin: 2em 0;
  1337. }
  1338. hr.major {
  1339. margin: 3em 0;
  1340. }
  1341. blockquote {
  1342. border-left: solid 6px #efefef;
  1343. font-style: italic;
  1344. margin: 0 0 2em 0;
  1345. padding: 0.5em 0 0.5em 1.5em;
  1346. }
  1347. blockquote p {
  1348. margin-bottom: 0.5em;
  1349. }
  1350. blockquote p:last-child {
  1351. margin-bottom: 0;
  1352. }
  1353. aside.update {
  1354. display: block;
  1355. border-left: solid 10px #696;
  1356. background-color: #efe;
  1357. padding: 1em;
  1358. margin: 0 0 2em 0;
  1359. }
  1360. aside.update h5 {
  1361. margin-bottom: 0;
  1362. }
  1363. aside.update ins {
  1364. text-decoration: none;
  1365. }
  1366. .highlight {
  1367. border-radius: 0.35em;
  1368. }
  1369. .highlight code {
  1370. background: none;
  1371. border: 0;
  1372. }
  1373. code {
  1374. background: #f7f7f7;
  1375. border-radius: 0.35em;
  1376. border: solid 2px #efefef;
  1377. font-family: "Courier New", monospace;
  1378. font-size: 0.9em;
  1379. margin: 0 0.25em;
  1380. padding: 0.25em 0.65em;
  1381. }
  1382. pre {
  1383. -webkit-overflow-scrolling: touch;
  1384. font-family: "Courier New", monospace;
  1385. font-size: 0.9em;
  1386. margin: 0 0 2em 0;
  1387. }
  1388. pre code {
  1389. display: block;
  1390. line-height: 1.75em;
  1391. padding: 1em 1.5em;
  1392. overflow-x: auto;
  1393. }
  1394. .align-left {
  1395. text-align: left;
  1396. }
  1397. .align-center {
  1398. text-align: center;
  1399. }
  1400. .align-right {
  1401. text-align: right;
  1402. }
  1403. /* Section/Article */
  1404. section.special, article.special {
  1405. text-align: center;
  1406. }
  1407. article + article {
  1408. padding-top: 100px;
  1409. border-top: 10px solid rgba(200, 200, 200, 0.3);
  1410. margin-top: 100px;
  1411. }
  1412. header h1 {
  1413. text-transform: uppercase;
  1414. }
  1415. header h1 a {
  1416. color: #3c3c3c;
  1417. text-decoration: none;
  1418. border-bottom: 0;
  1419. }
  1420. header p {
  1421. color: #d2d2d2;
  1422. position: relative;
  1423. margin: 0 0 1.5em 0;
  1424. }
  1425. header h2 + p {
  1426. color: #939393;
  1427. font-size: 1.25em;
  1428. margin-top: -1em;
  1429. line-height: 1.5em;
  1430. }
  1431. header h3 + p {
  1432. font-size: 1.1em;
  1433. margin-top: -0.8em;
  1434. line-height: 1.5em;
  1435. }
  1436. header h4 + p,
  1437. header h5 + p,
  1438. header h6 + p {
  1439. font-size: 0.9em;
  1440. margin-top: -0.6em;
  1441. line-height: 1.5em;
  1442. }
  1443. header.major h2 {
  1444. font-size: 2em;
  1445. }
  1446. header .fa-ul {
  1447. text-align: left;
  1448. }
  1449. #header section {
  1450. padding: 20px 0;
  1451. }
  1452. #header a {
  1453. text-decoration: none;
  1454. }
  1455. #posts .recent a {
  1456. background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 30%);
  1457. display: inline-block;
  1458. width: 100%;
  1459. padding: 0 0.7em 0 2em;
  1460. }
  1461. #posts ul {
  1462. list-style-type: none;
  1463. }
  1464. #posts ul li {
  1465. margin: 20px 0;
  1466. font-size: 0.9em;
  1467. line-height: 1.3em;
  1468. }
  1469. #posts ul li a {
  1470. .color: #ccc;
  1471. }
  1472. /* Form */
  1473. form {
  1474. margin: 0 0 2em 0;
  1475. }
  1476. label {
  1477. color: #787878;
  1478. display: block;
  1479. font-size: 0.9em;
  1480. font-weight: 400;
  1481. margin: 0 0 1em 0;
  1482. }
  1483. input[type="text"],
  1484. input[type="password"],
  1485. input[type="email"],
  1486. select,
  1487. textarea {
  1488. -moz-appearance: none;
  1489. -webkit-appearance: none;
  1490. -ms-appearance: none;
  1491. appearance: none;
  1492. background: #f7f7f7;
  1493. border-radius: 0.35em;
  1494. border: solid 2px transparent;
  1495. color: inherit;
  1496. display: block;
  1497. outline: 0;
  1498. padding: 0 0.75em;
  1499. text-decoration: none;
  1500. width: 100%;
  1501. }
  1502. input[type="text"]:invalid,
  1503. input[type="password"]:invalid,
  1504. input[type="email"]:invalid,
  1505. select:invalid,
  1506. textarea:invalid {
  1507. box-shadow: none;
  1508. }
  1509. input[type="text"]:focus,
  1510. input[type="password"]:focus,
  1511. input[type="email"]:focus,
  1512. select:focus,
  1513. textarea:focus {
  1514. border-color: #49bf9d;
  1515. }
  1516. .select-wrapper {
  1517. text-decoration: none;
  1518. display: block;
  1519. position: relative;
  1520. }
  1521. .select-wrapper:before {
  1522. -moz-osx-font-smoothing: grayscale;
  1523. -webkit-font-smoothing: antialiased;
  1524. font-family: FontAwesome;
  1525. font-style: normal;
  1526. font-weight: normal;
  1527. text-transform: none !important;
  1528. }
  1529. .select-wrapper:before {
  1530. color: #dfdfdf;
  1531. content: '\f078';
  1532. display: block;
  1533. height: 2.75em;
  1534. line-height: 2.75em;
  1535. pointer-events: none;
  1536. position: absolute;
  1537. right: 0;
  1538. text-align: center;
  1539. top: 0;
  1540. width: 2.75em;
  1541. }
  1542. .select-wrapper select::-ms-expand {
  1543. display: none;
  1544. }
  1545. input[type="text"],
  1546. input[type="password"],
  1547. input[type="email"],
  1548. select {
  1549. height: 2.75em;
  1550. }
  1551. textarea {
  1552. padding: 0.75em;
  1553. }
  1554. input[type="checkbox"],
  1555. input[type="radio"] {
  1556. -moz-appearance: none;
  1557. -webkit-appearance: none;
  1558. -ms-appearance: none;
  1559. appearance: none;
  1560. display: block;
  1561. float: left;
  1562. margin-right: -2em;
  1563. opacity: 0;
  1564. width: 1em;
  1565. z-index: -1;
  1566. }
  1567. input[type="checkbox"] + label,
  1568. input[type="radio"] + label {
  1569. text-decoration: none;
  1570. color: #a2a2a2;
  1571. cursor: pointer;
  1572. display: inline-block;
  1573. font-size: 1em;
  1574. font-weight: 400;
  1575. padding-left: 2.4em;
  1576. padding-right: 0.75em;
  1577. position: relative;
  1578. }
  1579. input[type="checkbox"] + label:before,
  1580. input[type="radio"] + label:before {
  1581. -moz-osx-font-smoothing: grayscale;
  1582. -webkit-font-smoothing: antialiased;
  1583. font-family: FontAwesome;
  1584. font-style: normal;
  1585. font-weight: normal;
  1586. text-transform: none !important;
  1587. }
  1588. input[type="checkbox"] + label:before,
  1589. input[type="radio"] + label:before {
  1590. background: #f7f7f7;
  1591. border-radius: 0.35em;
  1592. border: solid 2px transparent;
  1593. content: '';
  1594. display: inline-block;
  1595. height: 1.65em;
  1596. left: 0;
  1597. line-height: 1.58125em;
  1598. position: absolute;
  1599. text-align: center;
  1600. top: 0;
  1601. width: 1.65em;
  1602. }
  1603. input[type="checkbox"]:checked + label:before,
  1604. input[type="radio"]:checked + label:before {
  1605. background: #787878;
  1606. border-color: #787878;
  1607. color: #fff;
  1608. content: '\f00c';
  1609. }
  1610. input[type="checkbox"]:focus + label:before,
  1611. input[type="radio"]:focus + label:before {
  1612. border-color: #49bf9d;
  1613. }
  1614. input[type="checkbox"] + label:before {
  1615. border-radius: 0.35em;
  1616. }
  1617. input[type="radio"] + label:before {
  1618. border-radius: 100%;
  1619. }
  1620. ::-webkit-input-placeholder {
  1621. color: #b2b2b2 !important;
  1622. opacity: 1.0;
  1623. }
  1624. :-moz-placeholder {
  1625. color: #b2b2b2 !important;
  1626. opacity: 1.0;
  1627. }
  1628. ::-moz-placeholder {
  1629. color: #b2b2b2 !important;
  1630. opacity: 1.0;
  1631. }
  1632. :-ms-input-placeholder {
  1633. color: #b2b2b2 !important;
  1634. opacity: 1.0;
  1635. }
  1636. .formerize-placeholder {
  1637. color: #b2b2b2 !important;
  1638. opacity: 1.0;
  1639. }
  1640. /* Box */
  1641. .box {
  1642. border-radius: 0.35em;
  1643. border: solid 2px #efefef;
  1644. margin-bottom: 2em;
  1645. padding: 1.5em;
  1646. }
  1647. .box > :last-child,
  1648. .box > :last-child > :last-child,
  1649. .box > :last-child > :last-child > :last-child {
  1650. margin-bottom: 0;
  1651. }
  1652. .box.alt {
  1653. border: 0;
  1654. border-radius: 0;
  1655. padding: 0;
  1656. }
  1657. /* Icon */
  1658. .icon {
  1659. text-decoration: none;
  1660. border-bottom: none;
  1661. position: relative;
  1662. }
  1663. .icon:before {
  1664. -moz-osx-font-smoothing: grayscale;
  1665. -webkit-font-smoothing: antialiased;
  1666. font-family: FontAwesome;
  1667. font-style: normal;
  1668. font-weight: normal;
  1669. text-transform: none !important;
  1670. }
  1671. .icon > .label {
  1672. display: none;
  1673. }
  1674. /* Image */
  1675. article img {
  1676. max-width: 100%;
  1677. }
  1678. .image {
  1679. border-radius: 0.35em;
  1680. border: 0;
  1681. display: inline-block;
  1682. position: relative;
  1683. }
  1684. .image:before {
  1685. -moz-transition: opacity 0.2s ease-in-out;
  1686. -webkit-transition: opacity 0.2s ease-in-out;
  1687. -ms-transition: opacity 0.2s ease-in-out;
  1688. transition: opacity 0.2s ease-in-out;
  1689. background: url("/res/images/overlay.png");
  1690. border-radius: 0.35em;
  1691. content: '';
  1692. display: block;
  1693. height: 100%;
  1694. left: 0;
  1695. opacity: 0.5;
  1696. position: absolute;
  1697. top: 0;
  1698. width: 100%;
  1699. }
  1700. .image.thumb {
  1701. text-align: center;
  1702. }
  1703. .image.thumb:after {
  1704. -moz-transition: opacity 0.2s ease-in-out;
  1705. -webkit-transition: opacity 0.2s ease-in-out;
  1706. -ms-transition: opacity 0.2s ease-in-out;
  1707. transition: opacity 0.2s ease-in-out;
  1708. border-radius: 0.35em;
  1709. border: solid 3px rgba(255, 255, 255, 0.5);
  1710. color: #fff;
  1711. content: 'View';
  1712. display: inline-block;
  1713. font-size: 0.8em;
  1714. font-weight: 400;
  1715. left: 50%;
  1716. line-height: 2.25em;
  1717. margin: -1.25em 0 0 -3em;
  1718. opacity: 0;
  1719. padding: 0 1.5em;
  1720. position: absolute;
  1721. text-align: center;
  1722. text-decoration: none;
  1723. top: 50%;
  1724. white-space: nowrap;
  1725. }
  1726. .image.thumb:hover:after {
  1727. opacity: 1.0;
  1728. }
  1729. .image.thumb:hover:before {
  1730. background: url("/res/images/overlay.png"), url("/res/images/overlay.png");
  1731. opacity: 1.0;
  1732. }
  1733. .image img {
  1734. border-radius: 0.35em;
  1735. display: block;
  1736. }
  1737. .image.left {
  1738. float: left;
  1739. margin: 0 1.5em 1em 0;
  1740. top: 0.25em;
  1741. }
  1742. .image.right {
  1743. float: right;
  1744. margin: 0 0 1em 1.5em;
  1745. top: 0.25em;
  1746. }
  1747. .image.left, .image.right {
  1748. max-width: 40%;
  1749. }
  1750. .image.left img, .image.right img {
  1751. width: 100%;
  1752. }
  1753. .image.fit {
  1754. display: block;
  1755. margin: 0 0 2em 0;
  1756. width: 100%;
  1757. }
  1758. .image.fit img {
  1759. width: 100%;
  1760. }
  1761. .image.avatar {
  1762. border-radius: 100%;
  1763. }
  1764. .image.avatar:before {
  1765. display: none;
  1766. }
  1767. .image.avatar img {
  1768. border-radius: 100%;
  1769. width: 100%;
  1770. }
  1771. /* List */
  1772. ol {
  1773. list-style: decimal;
  1774. margin: 0 0 2em 0;
  1775. padding-left: 1.25em;
  1776. }
  1777. ol li {
  1778. padding-left: 0.25em;
  1779. }
  1780. ul {
  1781. list-style: disc;
  1782. margin: 0 0 2em 0;
  1783. padding-left: 1em;
  1784. }
  1785. ul li {
  1786. padding-left: 0.5em;
  1787. }
  1788. ul.alt {
  1789. list-style: none;
  1790. padding-left: 0;
  1791. }
  1792. ul.alt li {
  1793. border-top: solid 2px #efefef;
  1794. padding: 0.5em 0;
  1795. }
  1796. ul.alt li:first-child {
  1797. border-top: 0;
  1798. padding-top: 0;
  1799. }
  1800. ul.icons {
  1801. cursor: default;
  1802. list-style: none;
  1803. padding-left: 0;
  1804. }
  1805. ul.icons li {
  1806. display: inline-block;
  1807. padding: 0 1em 0 0;
  1808. }
  1809. ul.icons li:last-child {
  1810. padding-right: 0;
  1811. }
  1812. ul.icons li .icon:before {
  1813. font-size: 1.5em;
  1814. }
  1815. ul.actions {
  1816. cursor: default;
  1817. list-style: none;
  1818. padding-left: 0;
  1819. }
  1820. ul.actions li {
  1821. display: inline-block;
  1822. padding: 0 1em 0 0;
  1823. vertical-align: middle;
  1824. }
  1825. ul.actions li:last-child {
  1826. padding-right: 0;
  1827. }
  1828. ul.actions.small li {
  1829. padding: 0 0.5em 0 0;
  1830. }
  1831. ul.actions.vertical li {
  1832. display: block;
  1833. padding: 1em 0 0 0;
  1834. }
  1835. ul.actions.vertical li:first-child {
  1836. padding-top: 0;
  1837. }
  1838. ul.actions.vertical li > * {
  1839. margin-bottom: 0;
  1840. }
  1841. ul.actions.vertical.small li {
  1842. padding: 0.5em 0 0 0;
  1843. }
  1844. ul.actions.vertical.small li:first-child {
  1845. padding-top: 0;
  1846. }
  1847. ul.actions.fit {
  1848. display: table;
  1849. margin-left: -1em;
  1850. padding: 0;
  1851. table-layout: fixed;
  1852. width: calc(100% + 1em);
  1853. }
  1854. ul.actions.fit li {
  1855. display: table-cell;
  1856. padding: 0 0 0 1em;
  1857. }
  1858. ul.actions.fit li > * {
  1859. margin-bottom: 0;
  1860. }
  1861. ul.actions.fit.small {
  1862. margin-left: -0.5em;
  1863. width: calc(100% + 0.5em);
  1864. }
  1865. ul.actions.fit.small li {
  1866. padding: 0 0 0 0.5em;
  1867. }
  1868. ul.labeled-icons {
  1869. list-style: none;
  1870. padding: 0;
  1871. }
  1872. ul.labeled-icons li {
  1873. line-height: 1.75em;
  1874. margin: 1.5em 0 0 0;
  1875. padding-left: 2.25em;
  1876. position: relative;
  1877. }
  1878. ul.labeled-icons li:first-child {
  1879. margin-top: 0;
  1880. }
  1881. ul.labeled-icons li a {
  1882. color: inherit;
  1883. }
  1884. ul.labeled-icons li h3 {
  1885. color: #b2b2b2;
  1886. left: 0;
  1887. position: absolute;
  1888. text-align: center;
  1889. top: 0;
  1890. width: 1em;
  1891. }
  1892. dl {
  1893. margin: 0 0 2em 0;
  1894. }
  1895. /* Table */
  1896. .table-wrapper {
  1897. -webkit-overflow-scrolling: touch;
  1898. overflow-x: auto;
  1899. }
  1900. table {
  1901. margin: 0 0 2em 0;
  1902. width: 100%;
  1903. }
  1904. table tbody tr {
  1905. border: solid 1px #efefef;
  1906. border-left: 0;
  1907. border-right: 0;
  1908. }
  1909. table tbody tr:nth-child(2n + 1) {
  1910. background-color: #f7f7f7;
  1911. }
  1912. table td {
  1913. padding: 0.75em 0.75em;
  1914. }
  1915. table th {
  1916. color: #787878;
  1917. font-size: 0.9em;
  1918. font-weight: 400;
  1919. padding: 0 0.75em 0.75em 0.75em;
  1920. text-align: left;
  1921. }
  1922. table thead {
  1923. border-bottom: solid 2px #efefef;
  1924. }
  1925. table tfoot {
  1926. border-top: solid 2px #efefef;
  1927. }
  1928. table.alt {
  1929. border-collapse: separate;
  1930. }
  1931. table.alt tbody tr td {
  1932. border: solid 2px #efefef;
  1933. border-left-width: 0;
  1934. border-top-width: 0;
  1935. }
  1936. table.alt tbody tr td:first-child {
  1937. border-left-width: 2px;
  1938. }
  1939. table.alt tbody tr:first-child td {
  1940. border-top-width: 2px;
  1941. }
  1942. table.alt thead {
  1943. border-bottom: 0;
  1944. }
  1945. table.alt tfoot {
  1946. border-top: 0;
  1947. }
  1948. /* Button */
  1949. input[type="submit"],
  1950. input[type="reset"],
  1951. input[type="button"],
  1952. .button {
  1953. -moz-appearance: none;
  1954. -webkit-appearance: none;
  1955. -ms-appearance: none;
  1956. appearance: none;
  1957. -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1958. -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1959. -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1960. transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  1961. background-color: transparent;
  1962. border-radius: 0.35em;
  1963. border: solid 3px #efefef;
  1964. color: #787878 !important;
  1965. cursor: pointer;
  1966. display: inline-block;
  1967. font-weight: 400;
  1968. height: 3.15em;
  1969. height: calc(2.75em + 6px);
  1970. line-height: 2.75em;
  1971. min-width: 10em;
  1972. padding: 0 1.5em;
  1973. text-align: center;
  1974. text-decoration: none;
  1975. white-space: nowrap;
  1976. }
  1977. input[type="submit"]:hover,
  1978. input[type="reset"]:hover,
  1979. input[type="button"]:hover,
  1980. .button:hover {
  1981. border-color: #49bf9d;
  1982. color: #49bf9d !important;
  1983. }
  1984. input[type="submit"]:active,
  1985. input[type="reset"]:active,
  1986. input[type="button"]:active,
  1987. .button:active {
  1988. background-color: rgba(73, 191, 157, 0.1);
  1989. border-color: #49bf9d;
  1990. color: #49bf9d !important;
  1991. }
  1992. input[type="submit"].icon,
  1993. input[type="reset"].icon,
  1994. input[type="button"].icon,
  1995. .button.icon {
  1996. padding-left: 1.35em;
  1997. }
  1998. input[type="submit"].icon:before,
  1999. input[type="reset"].icon:before,
  2000. input[type="button"].icon:before,
  2001. .button.icon:before {
  2002. margin-right: 0.5em;
  2003. }
  2004. input[type="submit"].fit,
  2005. input[type="reset"].fit,
  2006. input[type="button"].fit,
  2007. .button.fit {
  2008. display: block;
  2009. margin: 0 0 1em 0;
  2010. min-width: 0;
  2011. width: 100%;
  2012. }
  2013. input[type="submit"].small,
  2014. input[type="reset"].small,
  2015. input[type="button"].small,
  2016. .button.small {
  2017. font-size: 0.8em;
  2018. }
  2019. input[type="submit"].big,
  2020. input[type="reset"].big,
  2021. input[type="button"].big,
  2022. .button.big {
  2023. font-size: 1.35em;
  2024. }
  2025. input[type="submit"].special,
  2026. input[type="reset"].special,
  2027. input[type="button"].special,
  2028. .button.special {
  2029. background-color: #49bf9d;
  2030. border-color: #49bf9d;
  2031. color: #ffffff !important;
  2032. }
  2033. input[type="submit"].special:hover,
  2034. input[type="reset"].special:hover,
  2035. input[type="button"].special:hover,
  2036. .button.special:hover {
  2037. background-color: #5cc6a7;
  2038. border-color: #5cc6a7;
  2039. }
  2040. input[type="submit"].special:active,
  2041. input[type="reset"].special:active,
  2042. input[type="button"].special:active,
  2043. .button.special:active {
  2044. background-color: #3eb08f;
  2045. border-color: #3eb08f;
  2046. }
  2047. input[type="submit"].disabled, input[type="submit"]:disabled,
  2048. input[type="reset"].disabled,
  2049. input[type="reset"]:disabled,
  2050. input[type="button"].disabled,
  2051. input[type="button"]:disabled,
  2052. .button.disabled,
  2053. .button:disabled {
  2054. background-color: #e7e7e7 !important;
  2055. border-color: #e7e7e7 !important;
  2056. color: #b2b2b2 !important;
  2057. cursor: default;
  2058. }
  2059. /* Work Item */
  2060. .work-item {
  2061. margin: 0 0 2em 0;
  2062. }
  2063. .work-item .image {
  2064. margin: 0 0 1.5em 0;
  2065. }
  2066. .work-item h3 {
  2067. font-size: 1em;
  2068. margin: 0 0 0.5em 0;
  2069. }
  2070. .work-item p {
  2071. font-size: 0.8em;
  2072. line-height: 1.5em;
  2073. margin: 0;
  2074. }
  2075. /* Header */
  2076. #header {
  2077. display: -moz-flex;
  2078. display: -webkit-flex;
  2079. display: -ms-flex;
  2080. display: flex;
  2081. -moz-flex-direction: column;
  2082. -webkit-flex-direction: column;
  2083. -ms-flex-direction: column;
  2084. flex-direction: column;
  2085. -moz-align-items: -moz-flex-end;
  2086. -webkit-align-items: -webkit-flex-end;
  2087. -ms-align-items: -ms-flex-end;
  2088. align-items: flex-end;
  2089. -moz-justify-content: space-between;
  2090. -webkit-justify-content: space-between;
  2091. -ms-justify-content: space-between;
  2092. justify-content: space-between;
  2093. background-color: #1f1815;
  2094. background-attachment: scroll, fixed;
  2095. background-image: url("/res/images/overlay.png"), url("/res/images/background.jpg");
  2096. background-position: top left, top left;
  2097. background-repeat: repeat, no-repeat;
  2098. background-size: auto, auto 100%;
  2099. color: rgba(255, 255, 255, 0.4);
  2100. height: 100%;
  2101. left: 0;
  2102. padding: 8em 2em 8em 1em;
  2103. position: fixed;
  2104. text-align: right;
  2105. top: 0;
  2106. width: 20%;
  2107. }
  2108. #header > * {
  2109. -moz-flex-shrink: 0;
  2110. -webkit-flex-shrink: 0;
  2111. -ms-flex-shrink: 0;
  2112. flex-shrink: 0;
  2113. width: 100%;
  2114. }
  2115. #header > .inner {
  2116. -moz-flex-grow: 1;
  2117. -webkit-flex-grow: 1;
  2118. -ms-flex-grow: 1;
  2119. flex-grow: 1;
  2120. margin: 0 0 2em 0;
  2121. }
  2122. #header strong, #header b {
  2123. color: #ffffff;
  2124. }
  2125. #header h2, #header h3, #header h4, #header h5, #header h6 {
  2126. color: #ffffff;
  2127. }
  2128. #header h1 {
  2129. color: rgba(255, 255, 255, 0.5);
  2130. font-size: 1.35em;
  2131. line-height: 1.75em;
  2132. margin: 0;
  2133. }
  2134. #header .image.avatar {
  2135. margin: 0 0 1em 0;
  2136. width: 6.25em;
  2137. }
  2138. #identities ul {
  2139. margin-bottom: 0;
  2140. }
  2141. #identities {
  2142. position: absolute;
  2143. bottom: 20px;
  2144. left: 20px;
  2145. }
  2146. #identities li {
  2147. font-size: 0.8em;
  2148. line-height: 1.4em;
  2149. margin: 0.4em 0;
  2150. }
  2151. #pgp {
  2152. font-family: monospace;
  2153. }
  2154. /* Footer */
  2155. #footer .icons {
  2156. margin: 1em 0 0 0;
  2157. }
  2158. #footer .icons a {
  2159. color: rgba(255, 255, 255, 0.4);
  2160. }
  2161. #footer .copyright {
  2162. color: rgba(255, 255, 255, 0.4);
  2163. font-size: 0.8em;
  2164. list-style: none;
  2165. margin: 1em 0 0 0;
  2166. padding: 0;
  2167. }
  2168. #footer .copyright li {
  2169. border-left: solid 1px rgba(255, 255, 255, 0.25);
  2170. display: inline-block;
  2171. line-height: 1em;
  2172. margin-left: 0.75em;
  2173. padding-left: 0.75em;
  2174. }
  2175. #footer .copyright li:first-child {
  2176. border-left: 0;
  2177. margin-left: 0;
  2178. padding-left: 0;
  2179. }
  2180. #footer .copyright li a {
  2181. color: inherit;
  2182. }
  2183. /* Main */
  2184. #main {
  2185. margin-left: calc(60% - 27em);
  2186. max-width: 54em;
  2187. padding: 8em 4em 4em 4em;
  2188. width: calc(100% - 20%);
  2189. }
  2190. #main > section {
  2191. border-top: solid 2px #efefef;
  2192. margin: 4em 0 0 0;
  2193. padding: 4em 0 0 0;
  2194. }
  2195. #main > section:first-child {
  2196. border-top: 0;
  2197. margin-top: 0;
  2198. padding-top: 0;
  2199. }
  2200. /* Poptrox */
  2201. @-moz-keyframes spin {
  2202. 0% {
  2203. -moz-transform: rotate(0deg);
  2204. -webkit-transform: rotate(0deg);
  2205. -ms-transform: rotate(0deg);
  2206. transform: rotate(0deg);
  2207. }
  2208. 100% {
  2209. -moz-transform: rotate(360deg);
  2210. -webkit-transform: rotate(360deg);
  2211. -ms-transform: rotate(360deg);
  2212. transform: rotate(360deg);
  2213. }
  2214. }
  2215. @-webkit-keyframes spin {
  2216. 0% {
  2217. -moz-transform: rotate(0deg);
  2218. -webkit-transform: rotate(0deg);
  2219. -ms-transform: rotate(0deg);
  2220. transform: rotate(0deg);
  2221. }
  2222. 100% {
  2223. -moz-transform: rotate(360deg);
  2224. -webkit-transform: rotate(360deg);
  2225. -ms-transform: rotate(360deg);
  2226. transform: rotate(360deg);
  2227. }
  2228. }
  2229. @-ms-keyframes spin {
  2230. 0% {
  2231. -moz-transform: rotate(0deg);
  2232. -webkit-transform: rotate(0deg);
  2233. -ms-transform: rotate(0deg);
  2234. transform: rotate(0deg);
  2235. }
  2236. 100% {
  2237. -moz-transform: rotate(360deg);
  2238. -webkit-transform: rotate(360deg);
  2239. -ms-transform: rotate(360deg);
  2240. transform: rotate(360deg);
  2241. }
  2242. }
  2243. @keyframes spin {
  2244. 0% {
  2245. -moz-transform: rotate(0deg);
  2246. -webkit-transform: rotate(0deg);
  2247. -ms-transform: rotate(0deg);
  2248. transform: rotate(0deg);
  2249. }
  2250. 100% {
  2251. -moz-transform: rotate(360deg);
  2252. -webkit-transform: rotate(360deg);
  2253. -ms-transform: rotate(360deg);
  2254. transform: rotate(360deg);
  2255. }
  2256. }
  2257. .poptrox-popup {
  2258. -moz-box-sizing: content-box;
  2259. -webkit-box-sizing: content-box;
  2260. -ms-box-sizing: content-box;
  2261. box-sizing: content-box;
  2262. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  2263. background: #fff;
  2264. border-radius: 0.35em;
  2265. box-shadow: 0 0.1em 0.15em 0 rgba(0, 0, 0, 0.15);
  2266. overflow: hidden;
  2267. padding-bottom: 3em;
  2268. }
  2269. .poptrox-popup .loader {
  2270. text-decoration: none;
  2271. -moz-animation: spin 1s linear infinite;
  2272. -webkit-animation: spin 1s linear infinite;
  2273. -ms-animation: spin 1s linear infinite;
  2274. animation: spin 1s linear infinite;
  2275. font-size: 1.5em;
  2276. height: 1em;
  2277. left: 50%;
  2278. line-height: 1em;
  2279. margin: -0.5em 0 0 -0.5em;
  2280. position: absolute;
  2281. top: 50%;
  2282. width: 1em;
  2283. }
  2284. .poptrox-popup .loader:before {
  2285. -moz-osx-font-smoothing: grayscale;
  2286. -webkit-font-smoothing: antialiased;
  2287. font-family: FontAwesome;
  2288. font-style: normal;
  2289. font-weight: normal;
  2290. text-transform: none !important;
  2291. }
  2292. .poptrox-popup .loader:before {
  2293. content: '\f1ce';
  2294. }
  2295. .poptrox-popup .caption {
  2296. background: #fff;
  2297. bottom: 0;
  2298. cursor: default;
  2299. font-size: 0.9em;
  2300. height: 3em;
  2301. left: 0;
  2302. line-height: 2.8em;
  2303. position: absolute;
  2304. text-align: center;
  2305. width: 100%;
  2306. z-index: 1;
  2307. }
  2308. .poptrox-popup .nav-next,
  2309. .poptrox-popup .nav-previous {
  2310. text-decoration: none;
  2311. -moz-transition: opacity 0.2s ease-in-out;
  2312. -webkit-transition: opacity 0.2s ease-in-out;
  2313. -ms-transition: opacity 0.2s ease-in-out;
  2314. transition: opacity 0.2s ease-in-out;
  2315. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  2316. background: rgba(0, 0, 0, 0.01);
  2317. cursor: pointer;
  2318. height: 100%;
  2319. opacity: 0;
  2320. position: absolute;
  2321. top: 0;
  2322. width: 50%;
  2323. }
  2324. .poptrox-popup .nav-next:before,
  2325. .poptrox-popup .nav-previous:before {
  2326. -moz-osx-font-smoothing: grayscale;
  2327. -webkit-font-smoothing: antialiased;
  2328. font-family: FontAwesome;
  2329. font-style: normal;
  2330. font-weight: normal;
  2331. text-transform: none !important;
  2332. }
  2333. .poptrox-popup .nav-next:before,
  2334. .poptrox-popup .nav-previous:before {
  2335. color: #fff;
  2336. font-size: 2.5em;
  2337. height: 1em;
  2338. line-height: 1em;
  2339. margin-top: -0.75em;
  2340. position: absolute;
  2341. text-align: center;
  2342. top: 50%;
  2343. width: 1.5em;
  2344. }
  2345. .poptrox-popup .nav-next {
  2346. right: 0;
  2347. }
  2348. .poptrox-popup .nav-next:before {
  2349. content: '\f105';
  2350. right: 0;
  2351. }
  2352. .poptrox-popup .nav-previous {
  2353. left: 0;
  2354. }
  2355. .poptrox-popup .nav-previous:before {
  2356. content: '\f104';
  2357. left: 0;
  2358. }
  2359. .poptrox-popup .closer {
  2360. text-decoration: none;
  2361. -moz-transition: opacity 0.2s ease-in-out;
  2362. -webkit-transition: opacity 0.2s ease-in-out;
  2363. -ms-transition: opacity 0.2s ease-in-out;
  2364. transition: opacity 0.2s ease-in-out;
  2365. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  2366. color: #fff;
  2367. height: 4em;
  2368. line-height: 4em;
  2369. opacity: 0;
  2370. position: absolute;
  2371. right: 0;
  2372. text-align: center;
  2373. top: 0;
  2374. width: 4em;
  2375. z-index: 2;
  2376. }
  2377. .poptrox-popup .closer:before {
  2378. -moz-osx-font-smoothing: grayscale;
  2379. -webkit-font-smoothing: antialiased;
  2380. font-family: FontAwesome;
  2381. font-style: normal;
  2382. font-weight: normal;
  2383. text-transform: none !important;
  2384. }
  2385. .poptrox-popup .closer:before {
  2386. -moz-box-sizing: content-box;
  2387. -webkit-box-sizing: content-box;
  2388. -ms-box-sizing: content-box;
  2389. box-sizing: content-box;
  2390. border-radius: 100%;
  2391. border: solid 3px rgba(255, 255, 255, 0.5);
  2392. content: '\f00d';
  2393. display: block;
  2394. font-size: 1em;
  2395. height: 1.75em;
  2396. left: 50%;
  2397. line-height: 1.75em;
  2398. margin: -0.875em 0 0 -0.875em;
  2399. position: absolute;
  2400. top: 50%;
  2401. width: 1.75em;
  2402. }
  2403. .poptrox-popup:hover .nav-next,
  2404. .poptrox-popup:hover .nav-previous {
  2405. opacity: 0.5;
  2406. }
  2407. .poptrox-popup:hover .nav-next:hover,
  2408. .poptrox-popup:hover .nav-previous:hover {
  2409. opacity: 1.0;
  2410. }
  2411. .poptrox-popup:hover .closer {
  2412. opacity: 0.5;
  2413. }
  2414. .poptrox-popup:hover .closer:hover {
  2415. opacity: 1.0;
  2416. }
  2417. /* Touch */
  2418. body.is-touch .image.thumb:before {
  2419. opacity: 0.5 !important;
  2420. }
  2421. body.is-touch .image.thumb:after {
  2422. display: none !important;
  2423. }
  2424. body.is-touch #header {
  2425. background-attachment: scroll;
  2426. background-size: auto, cover;
  2427. }
  2428. body.is-touch .poptrox-popup .nav-next,
  2429. body.is-touch .poptrox-popup .nav-previous,
  2430. body.is-touch .poptrox-popup .closer {
  2431. opacity: 1.0 !important;
  2432. }
  2433. /* XLarge */
  2434. @media screen and (max-width: 1800px) {
  2435. /* Basic */
  2436. body, input, select, textarea {
  2437. font-size: 12pt;
  2438. }
  2439. }
  2440. /* Large */
  2441. @media screen and (max-width: 1280px) {
  2442. /* Header */
  2443. #header {
  2444. padding: 6em 3em 3em 3em;
  2445. width: 30%;
  2446. }
  2447. #header h1 {
  2448. font-size: 1.25em;
  2449. }
  2450. #header h1 br {
  2451. display: none;
  2452. }
  2453. /* Footer */
  2454. #footer .copyright li {
  2455. border-left-width: 0;
  2456. display: block;
  2457. line-height: 2.25em;
  2458. margin-left: 0;
  2459. padding-left: 0;
  2460. }
  2461. /* Main */
  2462. #main {
  2463. margin-left: 30%;
  2464. max-width: none;
  2465. padding: 6em 3em 3em 3em;
  2466. width: calc(100% - 30%);
  2467. }
  2468. }
  2469. /* Medium */
  2470. @media screen and (max-width: 980px) {
  2471. /* Basic */
  2472. h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
  2473. display: none;
  2474. }
  2475. /* List */
  2476. ul.icons li .icon {
  2477. font-size: 1.25em;
  2478. }
  2479. /* Header */
  2480. #header {
  2481. background-attachment: scroll;
  2482. background-position: top left, center center;
  2483. background-size: auto, cover;
  2484. left: auto;
  2485. padding: 6em 4em;
  2486. position: relative;
  2487. text-align: center;
  2488. top: auto;
  2489. width: 100%;
  2490. display: block;
  2491. }
  2492. #header h1 {
  2493. font-size: 1.75em;
  2494. }
  2495. #header h1 br, #posts .recent *, #posts .recent a {
  2496. display: inline;
  2497. padding: 0;
  2498. width: auto;
  2499. }
  2500. #posts ul {
  2501. padding-left: 0;
  2502. }
  2503. #posts ul li {
  2504. text-align: left;
  2505. margin: 0;
  2506. }
  2507. /* Footer */
  2508. #footer {
  2509. background-attachment: scroll;
  2510. background-color: #1f1815;
  2511. background-image: url("/res/images/overlay.png"), url("/res/images/background.jpg");
  2512. background-position: top left, bottom center;
  2513. background-repeat: repeat, no-repeat;
  2514. background-size: auto, cover;
  2515. bottom: auto;
  2516. left: auto;
  2517. padding: 4em 4em 6em 4em;
  2518. position: relative;
  2519. text-align: center;
  2520. width: 100%;
  2521. }
  2522. #footer .icons {
  2523. margin: 0 0 1em 0;
  2524. }
  2525. #footer .copyright {
  2526. margin: 0 0 1em 0;
  2527. }
  2528. #footer .copyright li {
  2529. border-left-width: 1px;
  2530. display: inline-block;
  2531. line-height: 1em;
  2532. margin-left: 0.75em;
  2533. padding-left: 0.75em;
  2534. }
  2535. /* Main */
  2536. #main {
  2537. margin: 0;
  2538. padding: 6em 4em;
  2539. width: 100%;
  2540. }
  2541. }
  2542. /* Small */
  2543. @media screen and (max-width: 736px), screen and (max-height: 700px) {
  2544. /* Basic */
  2545. h1 {
  2546. font-size: 1.5em;
  2547. }
  2548. h2 {
  2549. font-size: 1.2em;
  2550. }
  2551. h3 {
  2552. font-size: 1em;
  2553. }
  2554. /* Section/Article */
  2555. section.special, article.special {
  2556. text-align: center;
  2557. }
  2558. header.major h2 {
  2559. font-size: 1.35em;
  2560. }
  2561. /* List */
  2562. ul.labeled-icons li {
  2563. padding-left: 2em;
  2564. }
  2565. ul.labeled-icons li h3 {
  2566. line-height: 1.75em;
  2567. }
  2568. /* Header */
  2569. #header {
  2570. padding: 2.25em 1.5em;
  2571. min-height: 18em;
  2572. }
  2573. #header section {
  2574. padding: 10px 0;
  2575. }
  2576. #header h1 {
  2577. font-size: 1.35em;
  2578. }
  2579. #header ul {
  2580. margin-bottom: 20px;
  2581. }
  2582. #posts {
  2583. position: absolute;
  2584. bottom: 20px;
  2585. right: 20px;
  2586. }
  2587. #posts li.recent {
  2588. display: none;
  2589. }
  2590. #posts ul li {
  2591. margin: 0 0;
  2592. font-size: 0.9em;
  2593. line-height: 1.3em;
  2594. }
  2595. /* Footer */
  2596. #footer {
  2597. padding: 2.25em 1.5em;
  2598. }
  2599. /* Main */
  2600. #main {
  2601. padding: 2.25em 1.5em 0.25em 1.5em;
  2602. }
  2603. #main > section {
  2604. margin: 2.25em 0 0 0;
  2605. padding: 2.25em 0 0 0;
  2606. }
  2607. /* Poptrox */
  2608. .poptrox-popup {
  2609. border-radius: 0;
  2610. }
  2611. .poptrox-popup .nav-next:before,
  2612. .poptrox-popup .nav-previous:before {
  2613. margin-top: -1em;
  2614. }
  2615. }
  2616. /* XSmall */
  2617. @media screen and (max-width: 480px), screen and (max-height: 700px) {
  2618. /* List */
  2619. ul.actions {
  2620. margin: 0 0 2em 0;
  2621. }
  2622. ul.actions li {
  2623. display: block;
  2624. padding: 1em 0 0 0;
  2625. text-align: center;
  2626. width: 100%;
  2627. }
  2628. ul.actions li:first-child {
  2629. padding-top: 0;
  2630. }
  2631. ul.actions li > * {
  2632. margin: 0 !important;
  2633. width: 100%;
  2634. }
  2635. ul.actions li > *.icon:before {
  2636. margin-left: -2em;
  2637. }
  2638. ul.actions.small li {
  2639. padding: 0.5em 0 0 0;
  2640. }
  2641. ul.actions.small li:first-child {
  2642. padding-top: 0;
  2643. }
  2644. /* Header */
  2645. #header {
  2646. padding: 2.25em 1.5em 2em;
  2647. min-height: 18em;
  2648. }
  2649. #header section {
  2650. padding: 0;
  2651. }
  2652. #header h1 br {
  2653. display: none;
  2654. }
  2655. #posts li.recent {
  2656. display: none;
  2657. }
  2658. #header ul {
  2659. margin-bottom: 20px;
  2660. }
  2661. #posts {
  2662. position: absolute;
  2663. bottom: 20px;
  2664. right: 20px;
  2665. }
  2666. #posts ul li {
  2667. margin: 0 0;
  2668. font-size: 0.9em;
  2669. line-height: 1.3em;
  2670. }
  2671. /* Footer */
  2672. #footer .copyright li {
  2673. border-left-width: 0;
  2674. display: block;
  2675. line-height: 2.25em;
  2676. margin-left: 0;
  2677. padding-left: 0;
  2678. }
  2679. }