Advertisement
kasougi

Untitled

May 28th, 2022
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. html, body {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. }
  6.  
  7. body {
  8. background-color: #000000;
  9. margin: 0;
  10. box-sizing: border-box;
  11. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  12. overflow-y: hidden;
  13. }
  14.  
  15. a {
  16. color: #14c07c;
  17. text-decoration: none;
  18. }
  19.  
  20. a:hover {
  21. text-decoration: underline;
  22. }
  23.  
  24. a:visited {
  25. color: #14c07c;
  26. }
  27.  
  28. h2 {
  29. color: #333333;
  30. }
  31.  
  32. label {
  33. display: block;
  34. }
  35.  
  36. input, button, select, textarea {
  37. font-family: inherit;
  38. font-size: inherit;
  39. -webkit-padding: 0.4em 0;
  40. padding: 0.4em;
  41. margin: 0 0 0.5em 0;
  42. box-sizing: border-box;
  43. border: 1px solid #ccc;
  44. border-radius: 2px;
  45. }
  46.  
  47. input:disabled {
  48. color: #ccc;
  49. }
  50.  
  51. button {
  52. color: #333;
  53. background-color: #f4f4f4;
  54. outline: none;
  55. }
  56.  
  57. button:disabled {
  58. color: #999;
  59. }
  60.  
  61. button:not(:disabled):active {
  62. background-color: #ddd;
  63. }
  64.  
  65. button:focus {
  66. border-color: #666;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement