tanmoklepasha

mshia

Jun 29th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.24 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5.  
  6. html, body {
  7.     width: 100%;
  8.     height: 100%;
  9.     font-family: "Source Sans Pro", sans-serif;
  10.     overflow-x:hidden;
  11. }
  12.  
  13. @font-face {
  14.     font-family: 'captionFont';
  15.     src: url('/static/fonts/bauhaus-georgian-thin-a.ttf');
  16. }
  17.  
  18. #top {
  19.     background: #D42341;
  20.     width: 100%;
  21.     height: 10%;
  22.     position: fixed;
  23.     top: 0;
  24.     box-shadow: 0 0 5px black;
  25.     z-index: 9999;
  26.     position: relative;
  27. }
  28.  
  29. #top .button {
  30.     width: 50px;
  31.     height: 100%;
  32.     float: left;
  33. }
  34.  
  35. #top .button:hover {
  36.  
  37. }
  38.  
  39. #top .title {
  40.     float: right;
  41.     font-weight: bold;
  42.     font-size: 15pt;
  43.     padding: 15px;
  44.     color: white;
  45.     text-shadow: 2px 2px black;
  46.     cursor: default;
  47.     user-select: none;
  48.     -moz-user-select: none;
  49.     -webkit-user-select: none;
  50.     -ms-user-select: none;
  51. }
  52.  
  53. #top .button img {
  54.     width: 100%;
  55.     height: 100%;
  56. }
  57.  
  58.  
  59. #middle {
  60.     width: 100%;
  61.     top: 10%;
  62.     bottom: 10%;
  63. }
  64.  
  65. #middle .background {
  66.     width: 100%;
  67.     position: fixed;
  68.     top: 10%;
  69.     bottom: 10%;
  70.     z-index: 1;
  71. }
  72.  
  73. #middle .background img {
  74.     width: 100%;
  75.     height: 100%;
  76. }
  77.  
  78. #middle .content {
  79.     width: 100%;
  80.     position: absolute;
  81.     top: 10%;
  82.     bottom: 10%;
  83.     z-index: 2;
  84.     background: url('/static/img/burger2.png');
  85.     background-size: cover;
  86. }
  87.  
  88. #middle .content .tab {
  89.     width: 100%;
  90.     max-width: 100%;
  91.     height: 100%;
  92.     position: absolute;
  93.     box-sizing: border-box;
  94. }
  95.  
  96. #results {
  97.     padding: 3% 3%;
  98. }
  99.  
  100. .tab .inner {
  101.     width: 100%;
  102.     height: 100%;
  103.     background: rgba(255, 255, 255, 0.7);
  104.     border-radius: 3px;
  105.     overflow-x: hidden;
  106.     overflow-y: auto;
  107. }
  108.  
  109. .tab .result {
  110.     padding: 15px 7px;
  111.     border-bottom: 1px solid #c9c9c9;
  112. }
  113.  
  114. #results .result .image {
  115.     float: left;
  116.     width: 40%;
  117.     box-sizing: border-box;
  118.     padding: 5px;
  119. }
  120.  
  121. #results .result .image img {
  122.     width: 100%;
  123.     border-radius: 3px;
  124. }
  125.  
  126. #results .result .data {
  127.     float: right;
  128.     width: 60%;
  129.     box-sizing: border-box;
  130.     padding: 5px;
  131. }
  132.  
  133. #results .result .title {
  134.     font-weight: bold;
  135. }
  136.  
  137. .result .description {
  138.     font-size: 11pt;
  139.     font-family: arial, sans-serif;
  140.     white-space: pre-line;
  141. }
  142.  
  143. #results .result button.read-more {
  144.     display: block;
  145.     float: right;
  146.     background: #D42341;
  147.     padding: 7px 18px;
  148.     border: none;
  149.     border-radius: 3px;
  150.     color: white;
  151.     transition: 0.1s linear;
  152.     display: block;
  153.     margin: 0 auto;
  154.     margin-top: 2rem;
  155.     font-size: 10.5pt;
  156. }
  157.  
  158. #full .result .image {
  159.     width: 100%;
  160.     box-sizing: border-box;
  161.     padding: 0px;
  162. }
  163.  
  164. #full .result .image img {
  165.     width: 100%;
  166.     border-radius: 3px;
  167. }
  168.  
  169. #full .result .data {
  170.     width: 100%;
  171.     box-sizing: border-box;
  172.     padding: 5px;
  173. }
  174.  
  175. #full .result .title {
  176.     font-weight: bold;
  177. }
  178.  
  179. #full .result .description {
  180.     margin-top: 15px;
  181. }
  182.  
  183. #full .result .description .rules {
  184.     padding-bottom: 10px;
  185. }
  186.  
  187. #full .result .description .rules ul {
  188.     margin-top: 5px;
  189. }
  190.  
  191. #full .result .description .rules ul li {
  192.     margin-left: 10px;
  193. }
  194.  
  195. h1, h2, h3 {
  196.     font-weight: normal !important;
  197. }
  198.  
  199. #middle .content .caption {
  200.     width: 80%;
  201.     font-family: "Times New Roman", Times, serif;
  202.     margin: 0 auto;
  203.     margin-top: 7%;
  204.     text-align: center;
  205. }
  206.  
  207. #middle .content .caption h2 {
  208.     margin-top: 7px;
  209. }
  210.  
  211. #middle .content .searchBar {
  212.     padding: 15px;
  213.     box-sizing: border-box;
  214.     background: rgba(147, 144, 144, 0.6);
  215.     margin-top: 2rem;
  216. }
  217.  
  218. #middle .content #search {
  219.     background: #D42341;
  220.     padding: 7px 18px;
  221.     border: none;
  222.     border-radius: 3px;
  223.     color: white;
  224.     transition: 0.1s linear;
  225.     display: block;
  226.     margin: 0 auto;
  227.     margin-top: 2rem;
  228.     font-size: 10.5pt;
  229. }
  230.  
  231. #middle .content button:hover,
  232. #middle .content button:focus{
  233.     background: #980e25;
  234. }
  235.  
  236. #middle .content button:focus {
  237.     padding-top: 8px;
  238.     padding-bottom: 6px;
  239.     box-shadow: inline 0 0 3px black;
  240. }
  241.  
  242. #bottom {
  243.     background: #D42341;
  244.     width: 100%;
  245.     height: 10%;
  246.     position: fixed;
  247.     bottom: 0;
  248.     box-shadow: 0 0 5px black;
  249.     z-index: 9999;
  250. }
  251.  
  252. .legend {
  253.     overflow: hidden;
  254.     text-align: center;
  255. }
  256. .legend:before,
  257. .legend:after {
  258.     background-color: #000;
  259.     content: "";
  260.     display: inline-block;
  261.     height: 2px;
  262.     position: relative;
  263.     vertical-align: middle;
  264.     width: 50%;
  265. }
  266. .legend:before {
  267.     right: 0.5em;
  268.     margin-left: -50%;
  269. }
  270. .legend:after {
  271.     left: 0.5em;
  272.     margin-right: -50%;
  273. }
  274.  
  275. .chosen-results {
  276.     text-align: left !important;
  277. }
  278.  
  279. .scontent {
  280.     position: absolute;
  281.     top: 0;
  282.     left: 0;
  283.     width: 100%;
  284. }
  285.  
  286. .search {
  287.     width: 100%;
  288.     margin-top: 14% !important;
  289.     text-align: center;
  290. }
  291.  
  292. .select2 .select2-selection {
  293.     padding: 0 3px !important;
  294.     min-height: 0 !important;
  295.     border: 1px solid #c9c9c9;
  296. }
  297.  
  298. .select2 input {
  299.     margin-top: 3px !important;
  300.     padding: 3px !important;
  301. }
  302.  
  303. .select2 .select2-selection__choice {
  304.     margin-top: 3px !important;
  305.     margin-right: 3px !important;
  306.     padding: 2px !important;
  307. }
  308.  
  309. .select2 .select2-selection__choice .select2-selection__choice__remove {
  310.     margin: 0 3px !important;
  311. }
Advertisement
Add Comment
Please, Sign In to add comment