ui.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902
  1. /* Website fonts. */
  2. @font-face {
  3. font-family: 'Nunito';
  4. src: url('/fonts/Nunito-Regular.ttf');
  5. }
  6. @font-face {
  7. font-family: 'Latin';
  8. src: url('/fonts/Latin-Modern-Mono-Light-Bold.otf');
  9. }
  10. /* Elements to be shown only in large screens. */
  11. .desktop{
  12. display: initial;
  13. }
  14. @media screen and (max-width : 800px){
  15. .desktop{
  16. display: none;
  17. }
  18. }
  19. /* Elements to be shown only in small screens. */
  20. .mobile{
  21. display: none;
  22. }
  23. @media screen and (max-width : 800px){
  24. .mobile{
  25. display: initial !important;
  26. }
  27. }
  28. /* Styles for the body of the page. */
  29. html {
  30. height: 100%;
  31. }
  32. body{
  33. height: 100%;
  34. padding: 0;
  35. margin: 0;
  36. background-color: #000000;
  37. font-size: 90%;
  38. min-height: 100vh;
  39. flex-direction: column;
  40. display: flex;
  41. }
  42. @media screen and (max-width : 800px){
  43. body{
  44. font-size: 100%;
  45. }
  46. }
  47. /* Style for all links. */
  48. a{
  49. color: #555555;
  50. text-shadow: 0 0 0.5em #7777ff;
  51. text-decoration: none;
  52. }
  53. /* Styles for elements that look and act as links. */
  54. .fake_a{
  55. color: #555555;
  56. text-shadow: 0 0 0.5em #7777ff;
  57. text-decoration: none;
  58. cursor: pointer;
  59. }
  60. /* Bold elements. */
  61. .bold{
  62. font-weight: bold;
  63. }
  64. /* Elements that look and act as buttons or links.*/
  65. .pointer {
  66. cursor: pointer;
  67. }
  68. /* Hidden elements. */
  69. .hidden{
  70. display: none;
  71. }
  72. img.slider{
  73. width: 1em;
  74. height: 1em;
  75. transition: all .3s ease-in-out;
  76. }
  77. div#cover{
  78. display: none;
  79. background-color: #000000bb;
  80. opacity: 0;
  81. transition: opacity .3s ease-in-out;
  82. position: fixed;
  83. top: 0;
  84. left: 0;
  85. right: 0;
  86. bottom: 0;
  87. }
  88. header{
  89. background-color: #000000;
  90. width: 100%;
  91. text-align: center;
  92. }
  93. header div#logo{
  94. color: #ffffff;
  95. font-size: 4em;
  96. font-family: 'Latin';
  97. }
  98. header nav{
  99. width: 100%;
  100. }
  101. header nav a{
  102. font-size: 1.5em;
  103. margin: 0.5em;
  104. color: #ffffff;
  105. text-decoration: none;
  106. position: relative;
  107. }
  108. header nav a:hover{
  109. color: #ffffff;
  110. }
  111. header nav a:before {
  112. content: " ";
  113. position: absolute;
  114. width: 100%;
  115. height: 0.1em;
  116. bottom: -0.1em;
  117. left: 0;
  118. background-color: #ffffff;
  119. visibility: hidden;
  120. transform: scaleX(0);
  121. transition: all 0.3s ease-in-out 0s;
  122. }
  123. header nav a:hover:before {
  124. visibility: visible;
  125. transform: scaleX(1);
  126. }
  127. header nav a img{
  128. height: 1.5em;
  129. vertical-align: bottom;
  130. }
  131. @media screen and (max-width : 800px){
  132. header div#logo{
  133. /* Adjusted for the text 'inigoValentin' */
  134. font-size: 12vw;
  135. }
  136. header nav{
  137. overflow: hidden;
  138. white-space: nowrap;
  139. width: 95%;
  140. margin: auto;
  141. }
  142. header nav a{
  143. display: inline-block;
  144. width: 30%;
  145. margin: 0;
  146. padding: 0.5em 0;
  147. text-align: center;
  148. color: #ffffff;
  149. text-decoration: none;
  150. border: 0.1em solid #aaaaaa;
  151. background-color: #222222;
  152. font-size: 4vw;
  153. }
  154. header nav a img{
  155. height: 1em;
  156. width: 1em;
  157. vertical-align: middle;
  158. margin-right: 0.2em;
  159. }
  160. }
  161. /* The actual footer */
  162. footer{
  163. background-color: #000000;
  164. font-size: 80%;
  165. text-align: center;
  166. height: 3.5em;
  167. margin-left: auto;
  168. margin-right: auto;
  169. margin-top: 3em;
  170. margin-bottom: 3.5em;
  171. color: #dddddd;
  172. bottom: 0;
  173. left: 0;
  174. padding: 1em 2em 3em 2em;
  175. }
  176. @media screen and (max-width : 800px){
  177. footer{
  178. padding: 1em 0;
  179. margin-top: 1em;
  180. margin-bottom: 7em;
  181. }
  182. }
  183. /* A table containing all the elements in the footer */
  184. footer table#footer_table{
  185. margin-left: auto;
  186. margin-right: auto;
  187. width: 80%;
  188. table-layout: fixed;
  189. }
  190. @media screen and (max-width : 800px){
  191. footer table#footer_table{
  192. width: 95%;
  193. }
  194. }
  195. /* An horizontal line separating the page contents from the footer. */
  196. footer table#footer_table hr#footer_separator{
  197. border: 0;
  198. background-color: #444444;
  199. height: 0.1em;
  200. width: 70%;
  201. }
  202. /* Left area of the footer. */
  203. footer table#footer_table td#footer_left{
  204. width: 33%;
  205. text-align: center;
  206. }
  207. /* Social label. */
  208. footer table#footer_table td#footer_left span#footer_follow{
  209. display: block;
  210. margin: 0 0 1em 0;
  211. }
  212. @media screen and (max-width : 800px){
  213. /* It already has the class 'desktop', which usually hiddes elements */
  214. /* for small devices, but I'm overriding the display property */
  215. footer table#footer_table td#footer_left span#footer_follow{
  216. display: none;
  217. }
  218. }
  219. /* Icons for social media */
  220. footer table#footer_table td#footer_left img.footer_social_icon{
  221. width: 2em;
  222. margin: 0.2em;
  223. vertical-align: middle;
  224. background-color: #ffffff;
  225. border: 0.1em solid #ffffff;
  226. border-radius: 0.3em;
  227. }
  228. /* Middle area of the footer */
  229. footer table#footer_table td#footer_center{
  230. width: 33%;
  231. text-align: center;
  232. }
  233. @media screen and (max-width : 800px){
  234. footer table#footer_table td#footer_center{
  235. display: none;
  236. }
  237. }
  238. /* Right area of the footer */
  239. footer table#footer_table td#footer_right{
  240. width: 33%;
  241. text-align: center;
  242. }
  243. /* Help link. */
  244. footer table#footer_table td#footer_right span#footer_help{
  245. display: block;
  246. margin: 0 0 1em 0;
  247. }
  248. /* Language flags. */
  249. footer table#footer_table td#footer_right a.lang img{
  250. height: 1em;
  251. margin: 0.5em;
  252. border-radius: 0.2em;
  253. border: 0.15em solid #555555;
  254. cursor: pointer;
  255. box-shadow: 0 0 0.7em #dde;
  256. transition: all .3s ease-in-out;
  257. }
  258. footer table#footer_table td#footer_right a.lang img:hover{
  259. box-shadow: 0 0 1em #111;
  260. }
  261. @media screen and (max-width : 800px){
  262. footer table#footer_table td#footer_right a.lang img{
  263. height: 1.2em;
  264. margin: 0.1em;
  265. border-radius: 0.1em;
  266. border: 0.1em solid #555555;
  267. box-shadow: 0 0 0 #dde;
  268. }
  269. }
  270. /* The contact form */
  271. div#contact_bg{
  272. display: none;
  273. background: #000000;
  274. opacity: 0.6;
  275. transition: all .4s ease-in-out;
  276. position: fixed;
  277. top: 0;
  278. left: 0;
  279. right: 0;
  280. bottom: 0;
  281. }
  282. section#contact{
  283. display: none;
  284. position: fixed;
  285. top: 20%;
  286. width: 60%;
  287. margin: auto;
  288. left: 20%;
  289. }
  290. @media screen and (max-width : 800px){
  291. section#contact{
  292. width: 90%;
  293. top: 15%;
  294. left: 5%;
  295. }
  296. }
  297. section#contact h3 img#contact_close{
  298. float:right;
  299. width: 1em;
  300. height: 1em;
  301. }
  302. section#contact div.contact_buttons{
  303. text-align: center;
  304. }
  305. section#contact div.contact_buttons input{
  306. margin: 1em;
  307. }
  308. @media screen and (max-width : 800px){
  309. section#contact div.contact_buttons input{
  310. margin: 0.3em;
  311. }
  312. }
  313. section#contact div#contact_menu{
  314. height: 18em;
  315. }
  316. section#contact div#contact_menu table{
  317. width: 100%;
  318. }
  319. section#contact div#contact_menu table td.label{
  320. width: 8em;
  321. text-align: right;
  322. padding-right: 1em;
  323. vertical-align: top;
  324. }
  325. section#contact div#contact_menu table input[type=text]{
  326. width: 18em;
  327. }
  328. @media screen and (max-width : 800px){
  329. section#contact div#contact_menu table td.label{
  330. width: initial;
  331. padding-right: 0.5em;
  332. padding-bottom: 1em;
  333. }
  334. section#contact div#contact_menu table input[type=text]{
  335. width: 90%;
  336. }
  337. }
  338. section#contact div#contact_menu table textarea{
  339. width: 90%;
  340. height: 5em;
  341. margin: auto;
  342. }
  343. section#contact div#contact_menu span.contact_error {
  344. font-weight: bold;
  345. color: #581010;
  346. background-color: #E2AAAA;
  347. border: 0.2em solid #E02323;
  348. border-radius: 0.429em;
  349. padding: 0.2em 0.5em;
  350. text-shadow: 0 0 0.15em #0003;
  351. cursor: pointer;
  352. font-size: 80%;
  353. margin-top: -0.5em;
  354. margin-left: 1em;
  355. transition: all .2s ease-in-out;
  356. }
  357. section#contact div#contact_progress{
  358. height: 18em;
  359. text-align: center;
  360. }
  361. section#contact div#contact_progress img{
  362. margin-top: 6em;
  363. width: 3em;
  364. height: 3em;
  365. animation: contact_progress 4s infinite linear;
  366. }
  367. @keyframes contact_progress {
  368. from {
  369. transform: rotate(0deg);
  370. }
  371. to {
  372. transform: rotate(359deg);
  373. }
  374. }
  375. section#contact div#contact_confirmation{
  376. height: 18em;
  377. text-align: center;
  378. }
  379. section#contact div#contact_confirmation p{
  380. padding-top: 2em;
  381. padding-bottom: 2em;
  382. font-size: 150%;
  383. font-weight: bold;
  384. }
  385. main{
  386. background-color: #000000;
  387. width: 100%;
  388. max-width: 90em;
  389. margin: 2em auto;
  390. padding: 0;
  391. text-align: center;
  392. flex: 1;
  393. }
  394. @media screen and (max-width : 800px){
  395. main{
  396. width: 100%;
  397. margin: 1em auto;
  398. }
  399. }
  400. section{
  401. text-align: left;
  402. margin: 0.5em;
  403. padding: 1em;
  404. background-color: #f0f0f0;
  405. border: 0.1em solid #003300;
  406. overflow: hidden;
  407. border-top-left-radius: 0.5em;
  408. border-top-right-radius: 0.5em;
  409. border-bottom-left-radius: 1.5em;
  410. border-bottom-right-radius: 1.5em;
  411. }
  412. @media screen and (max-width : 800px){
  413. section{
  414. margin: 1em;
  415. padding: 0.2em;
  416. }
  417. }
  418. section h3{
  419. position: relative;
  420. font-weight: bold;
  421. color: #ffffff;
  422. background-color: #60ae29;
  423. border-bottom: 0.1em solid #003300;
  424. font-size: 150%;
  425. padding: 0.5em 2em 0.2em 3em;
  426. margin: -0.8em -1em 1em -1em;
  427. font-variant: small-caps;
  428. }
  429. section h3:before {
  430. content: " /";
  431. opacity: 0.3;
  432. }
  433. @media screen and (max-width : 800px){
  434. section h3{
  435. font-size: 120%;
  436. padding: 1em 2em 0.2em 1.5em;
  437. }
  438. }
  439. /* .entry is a style only class to show content. Must be allways children os a .lighted element */
  440. section article{
  441. border: 0.1em solid #aaffaa00;
  442. border-radius: 0.3em;
  443. padding: 0.5em;
  444. margin: 0.5em;
  445. transition: all .4s ease-in-out;
  446. }
  447. @media screen and (max-width : 800px){
  448. section article{
  449. border-radius: 0.3em;
  450. padding: 0.2em;
  451. margin: 0.2em;
  452. }
  453. }
  454. section article h4{
  455. font-variant: small-caps;
  456. text-decoration: underline;
  457. text-decoration-color: #33553377;
  458. font-size: 140%;
  459. margin: 0.2em auto 1em auto;
  460. }
  461. @media screen and (max-width : 800px){
  462. section article h4{
  463. font-size: 120%;
  464. }
  465. }
  466. section section_list:hover{
  467. background-color: #efffef;
  468. border: 0.1em solid #aaffaaff;
  469. }
  470. /* Style for the mathces in search results */
  471. span.result_counter{
  472. margin-left: 1.2em;
  473. margin-bottom: 0.5em;
  474. font-weight: bold;
  475. font-style: italic;
  476. }
  477. /* Shown when no records on database */
  478. div.unavailable{
  479. margin-left: 4em;
  480. font-style: italic;
  481. }
  482. /**********************************
  483. * Styles to be applied to some *
  484. * horizontally scrollable *
  485. * elements *
  486. **********************************/
  487. /* Horizontall scrollbar that apears when a project has lots of renders */
  488. .slider::-webkit-scrollbar{
  489. width: 0.5em;
  490. height: 0.25em;
  491. background-color: #444444;
  492. }
  493. .slider::-webkit-scrollbar-thumb{
  494. background-color: #cccccc;
  495. border-radius: 0.714em;
  496. }
  497. .slider::-webkit-scrollbar-thumb:hover{
  498. background-color: #cccccc;
  499. border: 0.143em solid #000000;
  500. }
  501. .slider::-webkit-scrollbar-thumb:active{
  502. background-color: #cccccc;
  503. border: 0.143em solid #000000;
  504. }
  505. /* Icons for sharing page in a social network */
  506. img.social_icon{
  507. width: 3em;
  508. height: 3em;
  509. }
  510. /* Elements that should have the cursor as pointer */
  511. .pointer{
  512. cursor: pointer;
  513. }
  514. /**********************************
  515. * Styles for diverse input *
  516. * elements. Type-assigned *
  517. **********************************/
  518. /* Font for all the input elements */
  519. input{
  520. font-family: 'Nunito';
  521. }
  522. /* Style for the "submit" type elements in forms */
  523. input[type=submit]{
  524. font-weight: bold;
  525. color: #cccccc;
  526. background-color: #555555;
  527. border: 0.143em solid #bbbbbb;
  528. border-radius: 0.429em;
  529. padding: 0.5em;
  530. text-shadow: 0 0 0.75em #000000;
  531. cursor: pointer;
  532. }
  533. /* Style forr buttons */
  534. input[type=button], input[type=submit]{
  535. cursor: pointer;
  536. display: inline-block;
  537. color: #cccccc;
  538. background-color: #278c3a;
  539. border: 0.143em solid #66bf38;
  540. border-radius: 0.429em;
  541. padding: 0.5em 0.8em;
  542. text-shadow: 0 0 0.75em #000000;
  543. text-decoration: none;
  544. font-family: 'Nunito';
  545. font-weight: bold;
  546. font-variant: small-caps;
  547. letter-spacing: 0.07em;
  548. font-size: 110%;
  549. box-shadow: inset 0 0 0.2em #082400;
  550. text-transform: capitalize;
  551. }
  552. @media screen and (max-width : 800px){
  553. input[type=button], input[type=submit]{
  554. /*font-size: 120%;
  555. padding: 0.9em 1.4em;*/
  556. }
  557. }
  558. input[type=button]::first-letter{
  559. color: #ffffff;
  560. }
  561. input[type=button]:hover{
  562. color: #ffffff;
  563. background-color: #34b94d;
  564. box-shadow: inset 0 0 0.1em #000;
  565. border: 0.143em solid #285710;
  566. }
  567. input[type=button]:hover::first-letter{
  568. color: #ccffcc;
  569. }
  570. /* Style for textboxes */
  571. input[type=text]{
  572. font-weight: bold;
  573. color: #224422;
  574. background-color: #bbccbb;
  575. border: 0.286em solid #ddeedd;
  576. border-color: #dddddd;
  577. border-radius: 0.429em;
  578. padding: 0.25em;
  579. text-shadow: 0 0 0.5em #ffffff;
  580. }
  581. input[type=checkbox]{
  582. width: 1em;
  583. height: 1em;
  584. border-radius: 0.2em;
  585. border: 0.063em solid #005500;
  586. }
  587. /* Style for textareas */
  588. textarea{
  589. width: 80%;
  590. color: #224422;
  591. background-color: #bbccbb;
  592. border: 0.286em solid #ddeedd;
  593. border-color: #dddddd;
  594. border-radius: 0.429em;
  595. padding: 0.25em;
  596. text-shadow: 0 0 0.5em #ffffff;
  597. resize: none;
  598. }
  599. /* Style for selects */
  600. select{
  601. font-weight: bold;
  602. color: #444444;
  603. background-color: #bbbbbb;
  604. border: 0.286em solid #dddddd;
  605. border-radius: 0.286em;
  606. padding: 0.25em;
  607. text-shadow: 0 0 0.5em #ffffff;
  608. }
  609. /* Style for placeholders in input fields */
  610. ::-webkit-input-placeholder { /* WebKit browsers */
  611. color: #777777;
  612. }
  613. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  614. color: #777777;
  615. }
  616. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  617. color: #777777;
  618. }
  619. :-ms-input-placeholder { /* Internet Explorer 10+ */
  620. color: #777777;
  621. }
  622. /* Style-only class user to indicate that a field is incorrect. Ususally this class is added to an element with js */
  623. .error{
  624. border-color: #ffaaaa;
  625. }
  626. /* Style for the textbox input when the entered text is not the expected one */
  627. input[type=text].error{
  628. border-color: #ffaaaa;
  629. }
  630. /* Style for the textared input when the entered text is not the expected one */
  631. textarea.error{
  632. border-color: #ffaaaa;
  633. }
  634. /* Style for buttons that act as links */
  635. a.a_button{
  636. display: inline-block;
  637. color: #cccccc;
  638. background-color: #278c3a;
  639. border: 0.143em solid #66bf38;
  640. border-radius: 0.429em;
  641. padding: 0.5em 0.8em;
  642. text-shadow: 0 0 0.75em #000000;
  643. text-decoration: none;
  644. font-family: 'Nunito';
  645. font-weight: bold;
  646. font-variant: small-caps;
  647. letter-spacing: 0.07em;
  648. font-size: 110%;
  649. box-shadow: inset 0 0 0.2em #082400;
  650. text-transform: capitalize;
  651. transition: all .3s ease-in-out;
  652. }
  653. @media screen and (max-width : 800px){
  654. a.a_button{
  655. font-size: 100%;
  656. padding: 0.3em 0.2em;
  657. }
  658. }
  659. a.a_button::first-letter{
  660. color: #ffffff;
  661. }
  662. a.a_button:hover{
  663. color: #ffffff;
  664. background-color: #34b94d;
  665. box-shadow: inset 0 0 0.1em #000;
  666. border: 0.143em solid #285710;
  667. }
  668. a.a_button:hover::first-letter{
  669. color: #ccffcc;
  670. }
  671. /**********************************
  672. * Styles for comment-related *
  673. * elements *
  674. **********************************/
  675. /* Contains fields to identify the user before the comment can be posted. Hidden by css, must be displayed with js */
  676. div#identification_form{
  677. display: none;
  678. }
  679. /* Contain a comment, with the details and the text */
  680. div.comment{
  681. background-color: #efffef;
  682. border: 0.1em solid #aaffaa;
  683. border-radius: 0.3em;
  684. padding: 0.5em;
  685. margin: 0.5em;
  686. }
  687. /* User who posted the coment */
  688. div.comment h4.comment_user{
  689. margin-top: 0.417em;
  690. margin-bottom: 0;
  691. }
  692. div.comment h4.comment_user span.comment_user_registered{
  693. font-weight: bold;
  694. font-size: 110%;
  695. color: #005500;
  696. }
  697. /* Style for the comment's images */
  698. img.comment_image{
  699. border: 0.077em solid black;
  700. max-height: 6em;
  701. max-width: 60%;
  702. display: block;
  703. border: 0.133em solid black;
  704. margin-left: 0.938em;
  705. margin-bottom: 0.938em;
  706. box-shadow: 0 0 1em #444444;
  707. }
  708. /* Paragraph with the comment text */
  709. p.comment_text{
  710. width: auto;
  711. display: block;
  712. margin-top: 0.938em;
  713. margin-left: 0.938em;
  714. }
  715. span.comment_date{
  716. font-size: 80%;
  717. font-style: italic;
  718. }
  719. /* Input field for the comment text */
  720. textarea#new_comment_text{
  721. width: 98%;
  722. }
  723. /* Input field for the comment user */
  724. input#new_comment_user{
  725. width: 47%;
  726. }
  727. /* Input field for the comment email */
  728. input#new_comment_email{
  729. width: 47%;
  730. }
  731. /* Styles so the input field to upload an image with the comment looks like a button */
  732. label.image_upload {
  733. font-weight: bold;
  734. color: #cccccc;
  735. background-color: #555555;
  736. border: 0.067em solid #bbbbbb;
  737. border-radius: 0.2em;
  738. padding: 0.5em;
  739. text-shadow: 0 0 0.750em #000000;
  740. font-size: 0.813em; /*Same as buttons*/
  741. font-family: 'Nunito';
  742. }
  743. label.image_upload input {
  744. width: 0 !important;
  745. opacity: 0 !important;
  746. overflow: hidden !important;
  747. }
  748. /* Previsualization for the upload image in a comment */
  749. img#new_comment_image_preview{
  750. max-height: 7.692em;
  751. max-width: 11.538em;
  752. }
  753. /**********************************
  754. * Styles for the social buttons. *
  755. **********************************/
  756. a.share img.share{
  757. display: inline-block;
  758. vertical-align: top;
  759. overflow: hidden;
  760. width: 1.6em;
  761. height: 1.6em;
  762. border: 0.1em solid #003300;
  763. border-radius: 2em;
  764. box-shadow: 0 0 0.3em #005500;
  765. margin: 0.2em;
  766. transition: all .3s ease-in-out;
  767. }
  768. a.share img.share:hover{
  769. box-shadow: 0 0 0.7em #005500;
  770. border-radius: 0.7em;
  771. }
  772. span.technology{
  773. display: inline-block;
  774. }
  775. span.technology img.technology_logo{
  776. display: inline-block;
  777. position:relative;
  778. vertical-align: middle;
  779. border-radius: 50%;
  780. border-width: 0.2em;
  781. z-index: 2;
  782. background-color: #ffffff;
  783. border-style: solid;
  784. border-color: #000000;
  785. height: 1.5em;
  786. width: 1.5em;
  787. }
  788. span.technology span.technology_name{
  789. display: inline-block;
  790. position:relative;
  791. vertical-align: middle;
  792. border-radius: 15%;
  793. border-width: 0.2em;
  794. border-style: solid;
  795. padding: 0.1em 0.2em 0.1em 1.1em;
  796. z-index: 1;
  797. background-color: #ffffff;
  798. border-color: #000000;
  799. margin-left: -1.3em;
  800. font-size: 70%;
  801. font-weight: bold;
  802. }
  803. span.technology_1 span.technology_name{
  804. background-color: #f4a4a4;
  805. }
  806. span.technology_2 span.technology_name{
  807. background-color: #ffc898;
  808. }
  809. span.technology_3 span.technology_name{
  810. background-color: #a4c3f4;
  811. }
  812. span.technology_4 span.technology_name{
  813. background-color: #f4a4e4;
  814. }
  815. span.technology_5 span.technology_name{
  816. background-color: #a4f4a9;
  817. }
  818. span.technology_6 span.technology_name{
  819. background-color: #f4e8a4;
  820. }