style_spoi.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. a, a:visited {
  6. color: rgb(0, 142, 214);
  7. font-weight: bold;
  8. transition: color .3s;
  9. text-decoration: none;
  10. }
  11. a:hover, a:focus {
  12. color: rgb(0, 142, 214);
  13. text-decoration: underline;
  14. }
  15. a.inverse-link, a.inverse-link:visited {
  16. color: white;
  17. font-weight: normal;
  18. text-decoration: underline;
  19. transition: color .3s;
  20. }
  21. a.inverse-link:hover, a.inverse-link:focus {
  22. color: #222;
  23. }
  24. a.title-link, a.title-link:visited {
  25. color: inherit;
  26. text-decoration: none;
  27. }
  28. a.title-link:hover, a.title-link:focus {
  29. color: inherit;
  30. }
  31. html {
  32. height: 100%;
  33. }
  34. body {
  35. font-family: 'Open Sans', Helvetica Neue, sans-serif;
  36. font-size: 1em;
  37. font-weight: 300;
  38. color: rgb(69, 69, 69);
  39. height: 100%;
  40. }
  41. /* general settings */
  42. header {
  43. position: fixed;
  44. top: 0;
  45. width: 100%;
  46. background: white;
  47. z-index: 3;
  48. box-shadow: 0 3px 6px rgba(180, 180, 180, 0.7);
  49. }
  50. .width_settings {
  51. max-width: 1300px;
  52. width: 95%;
  53. position: relative;
  54. margin: 0 auto;
  55. }
  56. section {
  57. width: 100%;
  58. padding-bottom: 50px;
  59. background: white;
  60. }
  61. .section_dark {
  62. background: rgb(244, 244, 244);
  63. border-bottom: 1px solid rgb(218, 223, 227);
  64. border-top: 1px solid rgb(218, 223, 227);
  65. }
  66. h1,
  67. h2,
  68. h3 {
  69. font-family: 'Open Sans', Helvetica Neue, sans-serif;
  70. }
  71. h1 {
  72. font-size: 1.8em;
  73. }
  74. h1 a {
  75. text-decoration: none;
  76. color: rgb(69, 69, 69);
  77. transition: color 0.5s;
  78. }
  79. .basic_link {
  80. color: rgb(0, 142, 214);
  81. transition: color .3s;
  82. text-decoration: none;
  83. }
  84. .basic_link:hover {
  85. color: rgb(0, 142, 214);
  86. text-decoration: underline;
  87. }
  88. h2 {
  89. font-size: 2.6em;
  90. text-align: center;
  91. font-weight: 600;
  92. }
  93. h3 {
  94. font-size: 2em;
  95. text-align: center;
  96. font-weight: 600;
  97. margin-top: 50px;
  98. }
  99. h4 {
  100. font-size: 1.4em;
  101. text-align: center;
  102. color: white;
  103. font-weight: 400;
  104. padding: 0 10px;
  105. }
  106. .colored_line {
  107. margin: 15px auto;
  108. width: 100px;
  109. height: 2px;
  110. background: rgb(0, 142, 214);
  111. }
  112. footer {
  113. background: white;
  114. margin: 0;
  115. padding: 20px 0;
  116. }
  117. footer p {
  118. color: rgb(69, 69, 69);
  119. text-align: center;
  120. padding: 3px 0;
  121. margin: 0;
  122. font-weight: 600;
  123. font-size: 0.9em;
  124. }
  125. /*header*/
  126. #page_title {
  127. display: inline-block;
  128. height: 70px;
  129. line-height: 70px;
  130. margin: 0 20px 0 0;
  131. white-space: nowrap;
  132. color: rgb(69, 69, 69);
  133. }
  134. #page_title em {
  135. color: rgb(0, 142, 214);
  136. font-style: normal;
  137. transition: color 0.5s;
  138. }
  139. #page_title a:hover {
  140. color: rgb(0, 142, 214);
  141. }
  142. #page_title a:hover em {
  143. color: rgb(69, 69, 69);
  144. }
  145. #page_title_small{
  146. display: none;
  147. }
  148. nav {
  149. display: inline-block;
  150. text-align: center;
  151. white-space: nowrap;
  152. margin: 0 20px;
  153. }
  154. nav ul li {
  155. display: inline-block;
  156. font-weight: 600;
  157. font-size: 0.95em;
  158. color: rgb(69, 69, 69);
  159. padding: 0 10px;
  160. transition: color 0.5s;
  161. }
  162. nav ul li:hover {
  163. color: rgb(0, 142, 214);
  164. cursor: pointer;
  165. }
  166. #languages {
  167. display: inline-block;
  168. vertical-align: middle;
  169. margin: 2px 0 0 0;
  170. }
  171. .flags{
  172. width: 24px;
  173. height: 24px;
  174. border: 0;
  175. transition: opacity 0.5s;
  176. outline: none;
  177. opacity: 0.5;
  178. }
  179. .flags:hover{
  180. opacity: 1;
  181. cursor: pointer;
  182. }
  183. #en {
  184. background: url("img/flags/uk/uk_24x24.png") no-repeat;
  185. opacity: 1;
  186. }
  187. #cz {
  188. background: url("img/flags/cz/cz_24x24.png") no-repeat;
  189. }
  190. #it {
  191. background: url("img/flags/it/it_24x24.png") no-repeat;
  192. }
  193. #gr {
  194. background: url("img/flags/gr/gr_24x24.png") no-repeat;
  195. }
  196. #lv {
  197. background: url("img/flags/lv/lv_24x24.png") no-repeat;
  198. }
  199. #sk {
  200. background: url("img/flags/sk/sk_24x24.png") no-repeat;
  201. }
  202. #menu_icon, #menu_mobile {
  203. display: none;
  204. }
  205. /*Banner*/
  206. #banner {
  207. margin: 70px auto 0 auto;
  208. background: url('img/background.jpg') no-repeat top center;
  209. height: 300px;
  210. padding-bottom: 0;
  211. }
  212. #banner_box {
  213. padding-top: 70px;
  214. }
  215. #headline {
  216. color: white;
  217. }
  218. #headline_text {
  219. width: 70%;
  220. font-size: 1.2em;
  221. font-weight: 400;
  222. margin: 20px auto 0 auto;
  223. text-align: center;
  224. color: white;
  225. }
  226. /*About*/
  227. .plain_text {
  228. width: 70%;
  229. text-align: center;
  230. margin: 0 auto 20px auto;
  231. line-height: 1.5;
  232. }
  233. .plain_text em {
  234. font-weight: 600;
  235. font-style: normal;
  236. }
  237. /*Why and Links*/
  238. .boxes {
  239. text-align: center;
  240. }
  241. .box_white {
  242. display: inline-block;
  243. vertical-align: top;
  244. margin: 10px;
  245. width: 30%;
  246. max-width: 350px;
  247. }
  248. .img_white_box {
  249. margin: 20px 0 10px 0;
  250. }
  251. .box_white_title {
  252. font-size: 1.6em;
  253. color: rgb(0, 142, 214);
  254. }
  255. .box_white_text {
  256. width: 80%;
  257. text-align: center;
  258. margin: 10px auto 0 auto;
  259. line-height: 1.5;
  260. }
  261. .box_white_text em {
  262. font-weight: 600;
  263. font-style: normal;
  264. }
  265. .box {
  266. display: inline-block;
  267. vertical-align: bottom;
  268. margin: 10px;
  269. width: 30%;
  270. max-width: 350px;
  271. padding-bottom: 30px;
  272. background: rgb(0, 142, 214);
  273. transition: background 0.5s;
  274. }
  275. .box:hover {
  276. background: rgb(69, 69, 69);
  277. cursor: pointer;
  278. }
  279. .box_with_links:hover {
  280. background: rgb(0, 142, 214);
  281. cursor: auto;
  282. }
  283. .img_box {
  284. margin: 30px 0 20px 0;
  285. }
  286. .box_text {
  287. width: 80%;
  288. text-align: center;
  289. margin: 10px auto 0 auto;
  290. color: white;
  291. line-height: 1.5;
  292. }
  293. .box_link {
  294. text-decoration: underline;
  295. transition: color .3s;
  296. }
  297. .box_link:hover {
  298. color: #222;
  299. cursor: pointer;
  300. }
  301. .file_info {
  302. font-size: 13px;
  303. }
  304. /*map*/
  305. #map {
  306. width: 100%;
  307. height: 500px;
  308. border: 5px solid rgb(200, 200, 200);
  309. }
  310. #map:hover {
  311. opacity: 1;
  312. }
  313. .headlines_button {
  314. display: block;
  315. margin: 20px auto;
  316. padding: 1em 2.5em;
  317. font-family: 'Open Sans', Helvetica Neue, sans-serif;
  318. font-size: 1.1em;
  319. border: 0;
  320. background: rgb(0, 142, 214);
  321. color: white;
  322. transition: background 0.5s, color 0.5s;
  323. outline: none;
  324. }
  325. .headlines_button:hover {
  326. cursor: pointer;
  327. background: rgb(69, 69, 69);
  328. }
  329. /*Contacts*/
  330. #contacts {
  331. padding: 10px;
  332. text-align: center;
  333. }
  334. .footer_contacts_icon {
  335. display: inline-block;
  336. text-align: center;
  337. border: 0;
  338. height: 30px;
  339. width: 30px;
  340. margin: 5px;
  341. cursor: pointer;
  342. outline: none;
  343. vertical-align: middle;
  344. }
  345. #sdi_footer_icon {
  346. background: url("img/contacts.png") no-repeat top left;
  347. transition: background 0.5s;
  348. }
  349. #sdi_footer_icon:hover {
  350. background: url("img/contacts.png") no-repeat bottom left;
  351. }
  352. #in_footer_icon {
  353. background: url("img/contacts.png") no-repeat top right;
  354. transition: background 0.5s;
  355. }
  356. #in_footer_icon:hover {
  357. background: url("img/contacts.png") no-repeat bottom right;
  358. }
  359. #person_footer_icon {
  360. background: url("img/persons.png") no-repeat top left;
  361. height: 35px;
  362. transition: background 0.5s;
  363. }
  364. #person_footer_icon:hover {
  365. background: url("img/persons.png") no-repeat bottom left;
  366. }
  367. .link, .link a {
  368. font-size: 0.7em;
  369. color: rgb(150, 150, 150);
  370. }
  371. #copyright, #contributors {
  372. font-family: Helvetica Neue, sans-serif;
  373. }
  374. @media screen and (max-width: 1300px) and (min-width: 750px) {
  375. /*header*/
  376. #page_title {
  377. display: block;
  378. margin: 0;
  379. position: relative;
  380. text-align: center;
  381. font-size: 1.7em;
  382. height: 50px;
  383. line-height: 60px;
  384. }
  385. nav {
  386. display: block;
  387. position: relative;
  388. margin: 10px 0;
  389. text-align: center;
  390. }
  391. #languages{
  392. display: block;
  393. position: relative;
  394. text-align: center;
  395. top: auto;
  396. }
  397. #banner {
  398. margin: 100px auto 0 auto;
  399. }
  400. h2 {
  401. font-size: 2.2em;
  402. }
  403. h3 {
  404. font-size: 1.8em;
  405. padding-top: 10px;
  406. }
  407. #headline_text {
  408. width: 80%;
  409. }
  410. .plain_text {
  411. width: 80%;
  412. }
  413. /*Why and Links*/
  414. .box_white {
  415. margin: 5px;
  416. width: 30%;
  417. max-width: 350px;
  418. }
  419. .box_white_text {
  420. width: 90%;
  421. }
  422. .box {
  423. margin: 5px;
  424. width: 30%;
  425. max-width: 350px;
  426. }
  427. .img_box {
  428. margin: 20px 0 10px 0;
  429. }
  430. .box_text {
  431. margin: 5px auto 0 auto;
  432. width: 85%;
  433. }
  434. }
  435. @media screen and (max-width: 749px) {
  436. /*header*/
  437. #page_title {
  438. display: inline-block;
  439. vertical-align: middle;
  440. height: 50px;
  441. line-height: 50px;
  442. text-align: left;
  443. font-size: 1.5em;
  444. }
  445. nav {
  446. display: none;
  447. }
  448. #languages{
  449. display: block;
  450. position: relative;
  451. top: 0;
  452. left: 0;
  453. }
  454. #menu_icon {
  455. display: inline-block;
  456. position: absolute;
  457. right: 0;
  458. top: 12px;
  459. }
  460. #menu_icon_button {
  461. width: 40px;
  462. height: 24px;
  463. background: url("img/menu.png") no-repeat top left;
  464. border: 0;
  465. transition: background 0.5s;
  466. outline: none;
  467. }
  468. #menu_icon_button:hover {
  469. background: url("img/menu.png") no-repeat top right;
  470. cursor: pointer;
  471. }
  472. #menu_mobile {
  473. display: none;
  474. border-top: 1px solid rgb(218, 223, 227);
  475. padding: 10px 0;
  476. }
  477. .menu_mobile_button {
  478. width: 100%;
  479. text-align: left;
  480. border: 0;
  481. background: white;
  482. font-weight: 400;
  483. color: rgb(69, 69, 69);
  484. transition: color 0.5s;
  485. padding: 7px 10px;
  486. font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  487. font-size: 1em;
  488. outline: none;
  489. }
  490. .menu_mobile_button:hover {
  491. color: rgb(0, 142, 214);
  492. cursor: pointer;
  493. }
  494. h2 {
  495. font-size: 2em;
  496. }
  497. h3 {
  498. font-size: 1.6em;
  499. padding-top: 0;
  500. }
  501. #banner {
  502. margin: 70px auto 0 auto;
  503. background: black url('img/background.jpg') no-repeat top center;
  504. height: auto;
  505. padding-bottom: 20px;
  506. }
  507. #banner_box {
  508. padding-top: 30px;
  509. }
  510. #headline_text {
  511. width: 90%;
  512. font-size: 1em;
  513. }
  514. .plain_text {
  515. width: 90%;
  516. }
  517. /*Why and Links*/
  518. .box_white {
  519. display: block;
  520. margin: 10px auto;
  521. width: 90%;
  522. max-width: 400px;
  523. }
  524. .box_white_text {
  525. width: 90%;
  526. }
  527. .box {
  528. display: block;
  529. margin: 10px auto;
  530. width: 90%;
  531. max-width: 400px;
  532. padding-bottom: 30px;
  533. }
  534. .box_text {
  535. width: 90%;
  536. }
  537. #map {
  538. height: 300px;
  539. }
  540. }
  541. @media screen and (max-width: 400px) {
  542. #page_title {
  543. display: none;
  544. }
  545. #page_title_small {
  546. display: inline-block;
  547. vertical-align: middle;
  548. height: 50px;
  549. line-height: 50px;
  550. text-align: left;
  551. font-size: 1.2em;
  552. }
  553. #page_title_small a {
  554. color: rgb(0, 142, 214);
  555. }
  556. }