Advertisement
FlyFar

style.css

Jul 19th, 2023
1,167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.71 KB | Source Code | 0 0
  1. /* Global */
  2. .header{
  3.     font-size: 3rem;
  4.     margin-top: 1rem;
  5.     background: #00B0FF;
  6.     color: #fff;
  7.     padding:0.2rem;
  8.     border-radius:4px;
  9. }
  10. .button-warn{
  11.     background: #f00;
  12.     color: #fff;
  13. }
  14. nav{
  15.     background: #222;
  16. }
  17. nav a{
  18.     background: #222;
  19.     color: #999;
  20.     padding: 0.5em;
  21.     display: inline-block;
  22.     text-decoration: none;
  23. }
  24. nav a:hover{
  25.     background: #000;
  26.     color:#f0f0f0;
  27. }
  28. .left{
  29.     float: left;
  30. }
  31. .right{
  32.     float: right;
  33. }
  34. .bold{
  35.     font-weight: bold;
  36. }
  37. .margin-left{
  38.     margin-left: 1rem;
  39. }
  40. .clear{
  41.     clear: both;
  42. }
  43. table{
  44.     width: 100%;
  45. }
  46. #memoryGraph{
  47.     width: 12rem;
  48. }
  49. #scriptTextArea{
  50.     width:100%;
  51.     height:20rem;
  52. }
  53. #error{
  54.     text-align: center;
  55.     color: #fff;
  56.     background: #f00;
  57. }
Tags: CSS style
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement