Advertisement
FlyFar

server/webui/static/css/stylesheet.css

Jan 13th, 2024
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.58 KB | Cybersecurity | 0 0
  1. body {
  2.   margin: 0;
  3.   padding: 0;
  4.   background: #151515 url("../images/bkg.png") 0 0;
  5.   color: #eaeaea;
  6.   font: 16px;
  7.   line-height: 1.5;
  8.   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  9. }
  10.  
  11. /* General & 'Reset' Stuff */
  12.  
  13. .container {
  14.   width: 80%;
  15.   margin: 0 auto;
  16. }
  17.  
  18. section {
  19.   display: block;
  20.   margin: 0 0 20px 0;
  21. }
  22.  
  23. h1, h2, h3, h4, h5, h6 {
  24.   margin: 0 0 20px;
  25. }
  26.  
  27. li {
  28.   line-height: 1.4 ;
  29. }
  30.  
  31. /* Header, <header>
  32.    header   - container
  33.    h1       - project name
  34.    h2       - project description
  35. */
  36.  
  37. header {
  38.   background: rgba(0, 0, 0, 0.1);
  39.   width: 100%;
  40.   border-bottom: 1px dashed #b5e853;
  41.   padding: 20px 0;
  42.   margin: 0 0 40px 0;
  43. }
  44.  
  45. header h1 {
  46.   font-size: 30px;
  47.   line-height: 1.5;
  48.   margin: 0 0 0 -40px;
  49.   font-weight: bold;
  50.   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  51.   color: #b5e853;
  52.   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
  53.                0 0 5px rgba(181, 232, 83, 0.1),
  54.                0 0 10px rgba(181, 232, 83, 0.1);
  55.   letter-spacing: -1px;
  56.   -webkit-font-smoothing: antialiased;
  57. }
  58.  
  59. header h1:before {
  60.   content: "./ ";
  61.   font-size: 24px;
  62. }
  63.  
  64. header h2 {
  65.   font-size: 18px;
  66.   font-weight: 300;
  67.   color: #666;
  68. }
  69.  
  70. #downloads .btn {
  71.   display: inline-block;
  72.   text-align: center;
  73.   margin: 0;
  74. }
  75.  
  76. /* Main Content
  77. */
  78.  
  79. #main_content {
  80.   width: 100%;
  81.   -webkit-font-smoothing: antialiased;
  82. }
  83. section img {
  84.   max-width: 100%
  85. }
  86.  
  87. h1, h2, h3, h4, h5, h6 {
  88.   font-weight: normal;
  89.   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  90.   color: #b5e853;
  91.   letter-spacing: -0.03em;
  92.   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
  93.                0 0 5px rgba(181, 232, 83, 0.1),
  94.                0 0 10px rgba(181, 232, 83, 0.1);
  95. }
  96.  
  97. #main_content h1 {
  98.   font-size: 30px;
  99. }
  100.  
  101. #main_content h2 {
  102.   font-size: 24px;
  103. }
  104.  
  105. #main_content h3 {
  106.   font-size: 18px;
  107. }
  108.  
  109. #main_content h4 {
  110.   font-size: 14px;
  111. }
  112.  
  113. #main_content h5 {
  114.   font-size: 12px;
  115.   text-transform: uppercase;
  116.   margin: 0 0 5px 0;
  117. }
  118.  
  119. #main_content h6 {
  120.   font-size: 12px;
  121.   text-transform: uppercase;
  122.   color: #999;
  123.   margin: 0 0 5px 0;
  124. }
  125.  
  126. dt {
  127.   font-style: italic;
  128.   font-weight: bold;
  129. }
  130.  
  131. ul li {
  132.   list-style: none;
  133. }
  134.  
  135. ul li:before {
  136.   content: ">>";
  137.   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  138.   font-size: 13px;
  139.   color: #b5e853;
  140.   margin-left: -37px;
  141.   margin-right: 21px;
  142.   line-height: 16px;
  143. }
  144.  
  145. blockquote {
  146.   color: #aaa;
  147.   padding-left: 10px;
  148.   border-left: 1px dotted #666;
  149. }
  150.  
  151. pre {
  152.   background: rgba(0, 0, 0, 0.9);
  153.   border: 1px solid rgba(255, 255, 255, 0.15);
  154.   padding: 10px;
  155.   font-size: 14px;
  156.   color: #b5e853;
  157.   border-radius: 2px;
  158.   -moz-border-radius: 2px;
  159.   -webkit-border-radius: 2px;
  160.   text-wrap: normal;
  161.   overflow: scroll;
  162.   height: 500px;
  163. }
  164.  
  165. table {
  166.   width: 100%;
  167.   margin: 0 0 20px 0;
  168. }
  169.  
  170. th {
  171.   text-align: left;
  172.   border-bottom: 1px dashed #b5e853;
  173.   padding: 5px 10px;
  174. }
  175.  
  176. td {
  177.   padding: 5px 10px;
  178. }
  179.  
  180. hr {
  181.   height: 0;
  182.   border: 0;
  183.   border-bottom: 1px dashed #b5e853;
  184.   color: #b5e853;
  185. }
  186.  
  187. /* Buttons
  188. */
  189.  
  190. .btn {
  191.   display: inline-block;
  192.   background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
  193.   padding: 8px 18px;
  194.   border-radius: 50px;
  195.   border: 2px solid rgba(0, 0, 0, 0.7);
  196.   border-bottom: 2px solid rgba(0, 0, 0, 0.7);
  197.   border-top: 2px solid rgba(0, 0, 0, 1);
  198.   color: rgba(255, 255, 255, 0.8);
  199.   font-family: Helvetica, Arial, sans-serif;
  200.   font-weight: bold;
  201.   font-size: 13px;
  202.   text-decoration: none;
  203.   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
  204.   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  205. }
  206.  
  207. .btn:hover {
  208.   background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
  209. }
  210.  
  211. .btn .icon {
  212.   display: inline-block;
  213.   width: 16px;
  214.   height: 16px;
  215.   margin: 1px 8px 0 0;
  216.   float: left;
  217. }
  218.  
  219. .btn-github .icon {
  220.   opacity: 0.6;
  221.   background: url("../images/blacktocat.png") 0 0 no-repeat;
  222. }
  223.  
  224. /* Links
  225.    a, a:hover, a:visited
  226. */
  227.  
  228. a {
  229.   color: #63c0f5;
  230.   text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
  231. }
  232.  
  233. /* Clearfix */
  234.  
  235. .cf:before, .cf:after {
  236.   content:"";
  237.   display:table;
  238. }
  239.  
  240. .cf:after {
  241.   clear:both;
  242. }
  243.  
  244. .cf {
  245.   zoom:1;
  246. }
  247.  
  248. #msg-term-update {
  249.     cursor:pointer;
  250.     margin:auto;
  251.     display:none;
  252.     width:250px;
  253.     color:white;
  254.     background:#58b220;
  255.     padding:3px;
  256.     text-align:center;
  257.     border-radius:5px;
  258. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement