My public website https://www.chameth.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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