style.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. font-size: 100%;
  22. font: inherit;
  23. vertical-align: baseline;
  24. }
  25. /* HTML5 display-role reset for older browsers */
  26. article, aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {
  28. display: block;
  29. }
  30. body {
  31. line-height: 1;
  32. }
  33. ol, ul {
  34. list-style: none;
  35. }
  36. blockquote, q {
  37. quotes: none;
  38. }
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content: '';
  42. content: none;
  43. }
  44. table {
  45. border-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. /* Main CSS Styling */
  49. @font-face {
  50. font-family: 'quicksandbold';
  51. src: url('quicksand-bold-webfont.woff2') format('woff2'),
  52. url('quicksand-bold-webfont.woff') format('woff');
  53. font-weight: normal;
  54. font-style: normal;
  55. }
  56. @font-face {
  57. font-family: 'quicksandmedium';
  58. src: url('quicksand-medium-webfont.woff2') format('woff2'),
  59. url('quicksand-medium-webfont.woff') format('woff');
  60. font-weight: normal;
  61. font-style: normal;
  62. }
  63. @font-face {
  64. font-family: 'quicksandregular';
  65. src: url('quicksand-regular-webfont.woff2') format('woff2'),
  66. url('quicksand-regular-webfont.woff') format('woff');
  67. font-weight: normal;
  68. font-style: normal;
  69. }
  70. #header {
  71. text-align: right;
  72. }
  73. #header div {
  74. display: inline-block;
  75. margin-right: 5%;
  76. }
  77. hr {
  78. border: 0;
  79. height: 2px;
  80. background-image: linear-gradient(
  81. to right,
  82. rgba(0, 0, 0, 0),
  83. rgba(0, 0, 0, 0.75),
  84. rgba(0, 0, 0, 0));
  85. }
  86. #title {
  87. padding: 30px 30px 0 30px;
  88. font-family: 'quicksandregular';
  89. font-weight: bold;
  90. font-size: 2em;
  91. }
  92. #authors {
  93. padding: 30px 30px 0 30px;
  94. font-family: 'quicksandregular';
  95. font-weight: bold;
  96. font-size: 15px;
  97. color: #a8a8a8;
  98. }
  99. #institute {
  100. padding: 30px 30px 0 30px;
  101. font-size: 15px;
  102. font-family: 'quicksandregular';
  103. font-weight: bold;
  104. color: #696969;
  105. }
  106. #subheader {
  107. padding: 30px;
  108. text-align: center;
  109. vertical-align: middle;
  110. font-weight: bold;
  111. font-size: 25px;
  112. }
  113. #subheader input {
  114. vertical-align: middle;
  115. }
  116. .image {
  117. text-align: center;
  118. float: left;
  119. width: 32%;
  120. padding: 5px;
  121. }
  122. .icon {
  123. width: 3%;
  124. height: 3%;
  125. }
  126. .cont img, .cont input {
  127. vertical-align: middle;
  128. }
  129. #abstract {
  130. float: left;
  131. padding-left: 5%;
  132. font-family: 'Quicksand';
  133. font-size: 15px;
  134. width: 45%;
  135. height: 300px;
  136. }
  137. #details {
  138. float: left;
  139. background-color: #ededed;
  140. border: 1px solid #bdbdbd;
  141. width: 350px;
  142. height: 280px;
  143. border-radius: 10px;
  144. right: 8%;
  145. bottom: 8%;
  146. }