style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. .clearfix:after {
  49. content:" ";
  50. display:table;
  51. clear:both;
  52. }
  53. /* Main CSS Styling */
  54. @font-face {
  55. font-family: 'quicksandbold';
  56. src: url('quicksand-bold-webfont.woff2') format('woff2'),
  57. url('quicksand-bold-webfont.woff') format('woff');
  58. font-weight: normal;
  59. font-style: normal;
  60. }
  61. @font-face {
  62. font-family: 'quicksandmedium';
  63. src: url('quicksand-medium-webfont.woff2') format('woff2'),
  64. url('quicksand-medium-webfont.woff') format('woff');
  65. font-weight: normal;
  66. font-style: normal;
  67. }
  68. @font-face {
  69. font-family: 'quicksandregular';
  70. src: url('quicksand-regular-webfont.woff2') format('woff2'),
  71. url('quicksand-regular-webfont.woff') format('woff');
  72. font-weight: normal;
  73. font-style: normal;
  74. }
  75. #header {
  76. text-align: right;
  77. }
  78. #header div {
  79. display: inline-block;
  80. margin-right: 5%;
  81. }
  82. hr {
  83. border: 0;
  84. height: 2px;
  85. background-image: linear-gradient(
  86. to right,
  87. rgba(0, 0, 0, 0),
  88. rgba(0, 0, 0, 0.75),
  89. rgba(0, 0, 0, 0));
  90. }
  91. #title {
  92. padding: 30px 30px 0 30px;
  93. font-family: 'quicksandregular';
  94. font-weight: bold;
  95. font-size: 2em;
  96. }
  97. #authors {
  98. padding: 30px 30px 0 30px;
  99. font-family: 'quicksandregular';
  100. font-weight: bold;
  101. font-size: 15px;
  102. color: #a8a8a8;
  103. }
  104. #institute {
  105. padding: 30px 30px 0 30px;
  106. font-size: 15px;
  107. font-family: 'quicksandregular';
  108. font-weight: bold;
  109. color: #696969;
  110. }
  111. #subheader {
  112. padding: 30px;
  113. text-align: center;
  114. vertical-align: middle;
  115. font-weight: bold;
  116. font-size: 25px;
  117. }
  118. #subheader input {
  119. vertical-align: middle;
  120. }
  121. .image {
  122. text-align: center;
  123. float: left;
  124. width: 32%;
  125. padding: 5px;
  126. }
  127. .icon {
  128. width: 3%;
  129. height: 3%;
  130. }
  131. .cont img, .cont input {
  132. vertical-align: middle;
  133. }
  134. #abstract {
  135. float: left;
  136. padding-left: 5%;
  137. font-family: 'Quicksand';
  138. font-size: 15px;
  139. width: 50%;
  140. height: 300px;
  141. }
  142. #details {
  143. float: left;
  144. background-color: #ededed;
  145. border: 1px solid #bdbdbd;
  146. width: 32%;
  147. height: 280px;
  148. border-radius: 10px;
  149. }
  150. .photowrapper img {
  151. width: 100%;
  152. height: 100%;
  153. }
  154. #details {
  155. }
  156. #details img {
  157. margin: 5%;
  158. width: 90%;
  159. height: 90%;
  160. }