Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.84 KB | None | 0 0
  1. /* ------------------------------------------- General  ----------------------------------------- */
  2. html,body{
  3.     margin:0;
  4.     height:100%;
  5.     font-family:sans-serif;
  6. }
  7.  
  8. div{
  9.     margin:0;
  10.     padding:0;
  11. }
  12.  
  13. #wrapper{
  14.     width:100%;
  15.     height:100%;
  16. }
  17.  
  18. /*  -------------------------------- General -> Scrollbar --------------------------------------- */
  19. ::-webkit-scrollbar{
  20.     width:10px;
  21. }
  22.  
  23. ::-webkit-scrollbar-button:start:decrement{
  24.     display:none;
  25. }
  26.  
  27. ::webkit-scrollbar-button:end:increment{
  28.     display:none;
  29. }
  30.  
  31. ::-webkit-scrollbar-track-piece{
  32.     -webkit-border-radius:0px;
  33. }
  34.  
  35. ::-webkit-scrollbar-thumb:vertical{
  36.     height:50px;
  37.     background-color:#ccc;
  38.     border:0px;
  39.     -webkit-border-radius:10px;
  40. }
  41.  
  42. ::-webkit-scrollbar-thumb:vertical:hover{
  43.     background-color:#999;
  44. }
  45.  
  46. /* ---------------------------------- GENERAL -> Button ----------------------------------------- */
  47.  
  48. .button
  49. {
  50.     display: inline-block;
  51.     min-width: 54px;
  52.     border: 1px solid rgba(0, 0, 0, 0.1);
  53.     text-align: center;
  54.     color: #999;
  55.     font-size: 80%;
  56.     font-weight: bold;
  57.     height: 27px;
  58.     padding: 0 8px;
  59.     line-height: 27px;
  60.     -webkit-border-radius: 2px;
  61.     -webkit-transition: all 0.218s;
  62.     background-color: whiteSmoke;
  63.     background-image: -webkit-linear-gradient(top,whiteSmoke,#F1F1F1);
  64.     float:right;
  65.     display:inline-block;
  66.     text-decoration:none;
  67. }
  68.  
  69. .button:hover{
  70.     box-shadow:0px 0px 20px #ccc;
  71.     color: #333;
  72. }
  73.  
  74. /* --------------------------------------   HEADER  --------------------------------------------- */
  75.  
  76. #header{
  77.     height:70px;
  78.     background-image:url('../img/logo.png');
  79.     background-color:#F7F7F7;
  80.     border-bottom: 1px solid #E5E5E5;
  81.     background-repeat:no-repeat;
  82.     padding-left:290px;
  83. }
  84.  
  85. #header > input, #header > select {
  86.     font-size:138%;
  87.     margin-top:20px;
  88.     width:500px;
  89. }
  90.  
  91. #header > div{
  92.     display:inline;
  93. }
  94.  
  95. /* -------------------------------- HEADER -> Toolbar Buttons ----------------------------------- */
  96.  
  97. .buttonfinal{
  98.     -webkit-border-radius: 0px 2px 2px 0px;
  99.     margin:20px;
  100.     margin-left:0px;
  101. }
  102.  
  103. .buttonmiddle{
  104.     -webkit-border-radius: 0px 0px 0px 0px;
  105.     margin:20px;
  106.     margin-left:0px;
  107.     margin-right:0px;
  108.     border-right-color: transparent;
  109. }
  110.  
  111. .buttonbegin{
  112.     -webkit-border-radius: 2px 0 0 2px;
  113.     margin:20px;
  114.     margin-right:0px;
  115.     border-right-color: transparent;
  116. }
  117.  
  118. /* ------------------------------------------------- NAV ---------------------------------------- */
  119.  
  120. #nav{
  121.     width:300px;
  122.     float:left;
  123.     background-color:white;
  124.     border-right: 1px solid #E5E5E5;
  125.     border-bottom: 1px solid #E5E5E5;
  126.     overflow:auto;
  127.     position:absolute;
  128. }
  129.  
  130. #nav > div{
  131.     margin-left:auto;
  132.     margin-right:auto;
  133.     width:90%;
  134.     margin-top:10px;
  135.     margin-bottom:10px;
  136.     overflow:auto;
  137.     border:1px solid #E5E5E5;
  138.     -webkit-transition: all 0.218s;
  139.     -webkit-border-radius:5px;
  140. }
  141.  
  142. #nav > div:hover{
  143.     box-shadow:0px 0px 20px #ccc;
  144.     background-color:#F7F7F7;
  145. }
  146.  
  147.  
  148. /* ------------------------------------- NAV -> LANGUAGE SELECTOR --------------------------------*/
  149.  
  150. #nav > #language_selector{
  151.    
  152. }
  153.  
  154. #nav > #language_selector > select{
  155.     width:100%;
  156.     border:none;
  157.     color:blue;
  158. }
  159.  
  160. /* ------------------------------- NAV -> TYPE SELECTOR ----------------------------------------- */
  161.  
  162. #nav > #type_selector {
  163.     font-size:85%;
  164.     max-height:100px;
  165. }
  166.  
  167. #nav > #type_selector > .type{
  168.     font-weight:normal;
  169.     color:blue;
  170.     padding:2px;
  171.     padding-left:4px;
  172.     -webkit-border-radius: 5px;
  173. }
  174.  
  175. #nav > #type_selector > .type:hover{
  176.     background-color:#F3F7fD;
  177.     cursor:pointer;
  178. }
  179.  
  180. #nav > #type_selector > .typeSelected{
  181.     background-color:#EBF2FC;
  182.     font-weight:bold;
  183. }
  184.  
  185. #nav > #type_selector > .typeSelected:hover{
  186.     background-color:#EBF2FC;
  187.     cursor:pointer;
  188. }
  189.  
  190. /* ------------------------------------------ NAV -> RESULTS ------------------------------------ */
  191.  
  192. #nav > #results{
  193.     max-height:100%;
  194.     /*margin: 0 auto -100px;*/
  195.     position:initial;
  196.     height:500px;
  197.     font-size:70%;
  198. }
  199.  
  200. #nav > #results > div > label{
  201.     width:100%;
  202. }
  203.  
  204. /* ----------------------------------- NAV -> DRAWED -------------------------------------------- */
  205.  
  206. #nav > #drawed{
  207.     height:400px;
  208. }
  209.  
  210. /* ----------------------------------------- MAP CANVAS ----------------------------------------- */
  211.  
  212. #map_canvas{
  213.     width:100%;
  214.     margin-left:301px;
  215.     background-color:white;
  216.     border-bottom: 1px solid #E5E5E5;
  217. }
  218.  
  219. /* --------------------------------------------- FOOTER ----------------------------------------- */
  220.  
  221. #footer{
  222.     height:35px;
  223.     background-color:#F7F7F7;
  224.     color: #666;
  225. }
  226.  
  227. #footer > #copy{
  228.     font-size:70%;
  229.     padding:10px;
  230.     float:right;
  231. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement