Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. header{
  2. color: white;
  3. background-color: black;
  4. width: 100%;
  5. padding: 5px;
  6. }
  7.  
  8. body{
  9. background-color: khaki;
  10. }
  11.  
  12. header h1{
  13. display: inline;
  14. }
  15.  
  16. nav{
  17. float: right;
  18. padding: 10px;
  19. }
  20.  
  21. nav ul{
  22. display: inline;
  23. }
  24.  
  25. nav li{
  26. display: inline;
  27. }
  28.  
  29. nav a{
  30. color: yellow;
  31. text-decoration: none;
  32. padding-left: 10px;
  33. }
  34.  
  35. #camera{
  36. width: 700px;
  37. float: left;
  38. }
  39.  
  40. #mjpeg_desk{
  41. width: 640px;
  42. height: 480px;
  43. margin: 10px;
  44. }
  45.  
  46. #controls button{
  47. background-color: salmon;
  48. width: 150px;
  49. height: 100px;
  50. font-weight: bold;
  51. font-size: 30px;
  52. margin: auto;
  53. }
  54.  
  55. footer{
  56. border: 1px solid black;
  57. font-family: Courier;
  58. margin-top: 10px;
  59. }
  60.  
  61. .setting:after{
  62. content: " | ";
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement