Advertisement
Misplon

Untitled

May 9th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.40 KB | None | 0 0
  1. style type="text/css">
  2.         html {
  3.             background: #f1f1f1;
  4.         }
  5.         body {
  6.             background: #fff;
  7.             color: #444;
  8.             font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  9.             margin: 2em auto;
  10.             padding: 1em 2em;
  11.             max-width: 700px;
  12.             -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  13.             box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  14.         }
  15.         h1 {
  16.             border-bottom: 1px solid #dadada;
  17.             clear: both;
  18.             color: #666;
  19.             font-size: 24px;
  20.             margin: 30px 0 0 0;
  21.             padding: 0;
  22.             padding-bottom: 7px;
  23.         }
  24.         #error-page {
  25.             margin-top: 50px;
  26.         }
  27.         #error-page p {
  28.             font-size: 14px;
  29.             line-height: 1.5;
  30.             margin: 25px 0 20px;
  31.         }
  32.         #error-page code {
  33.             font-family: Consolas, Monaco, monospace;
  34.         }
  35.         ul li {
  36.             margin-bottom: 10px;
  37.             font-size: 14px ;
  38.         }
  39.         a {
  40.             color: #0073aa;
  41.         }
  42.         a:hover,
  43.         a:active {
  44.             color: #00a0d2;
  45.         }
  46.         a:focus {
  47.             color: #124964;
  48.             -webkit-box-shadow:
  49.                 0 0 0 1px #5b9dd9,
  50.                 0 0 2px 1px rgba(30, 140, 190, 0.8);
  51.             box-shadow:
  52.                 0 0 0 1px #5b9dd9,
  53.                 0 0 2px 1px rgba(30, 140, 190, 0.8);
  54.             outline: none;
  55.         }
  56.         .button {
  57.             background: #f7f7f7;
  58.             border: 1px solid #ccc;
  59.             color: #555;
  60.             display: inline-block;
  61.             text-decoration: none;
  62.             font-size: 13px;
  63.             line-height: 26px;
  64.             height: 28px;
  65.             margin: 0;
  66.             padding: 0 10px 1px;
  67.             cursor: pointer;
  68.             -webkit-border-radius: 3px;
  69.             -webkit-appearance: none;
  70.             border-radius: 3px;
  71.             white-space: nowrap;
  72.             -webkit-box-sizing: border-box;
  73.             -moz-box-sizing:    border-box;
  74.             box-sizing:         border-box;
  75.  
  76.             -webkit-box-shadow: 0 1px 0 #ccc;
  77.             box-shadow: 0 1px 0 #ccc;
  78.              vertical-align: top;
  79.         }
  80.  
  81.         .button.button-large {
  82.             height: 30px;
  83.             line-height: 28px;
  84.             padding: 0 12px 2px;
  85.         }
  86.  
  87.         .button:hover,
  88.         .button:focus {
  89.             background: #fafafa;
  90.             border-color: #999;
  91.             color: #23282d;
  92.         }
  93.  
  94.         .button:focus {
  95.             border-color: #5b9dd9;
  96.             -webkit-box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
  97.             box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
  98.             outline: none;
  99.         }
  100.  
  101.         .button:active {
  102.             background: #eee;
  103.             border-color: #999;
  104.              -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  105.              box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  106.              -webkit-transform: translateY(1px);
  107.              -ms-transform: translateY(1px);
  108.              transform: translateY(1px);
  109.         }
  110.  
  111. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement