ui.css 19 KB

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