Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. body {
  2. margin: 0 auto;
  3. }
  4.  
  5. #container {
  6. width: 960px;
  7. margin: 0 auto;
  8. }
  9.  
  10. #logo_bg {
  11. width: 65px;
  12. height: 60px;
  13. background-color: #146ca6;
  14. font-size: 42px;
  15. font-family: "Bahnschrift";
  16. color: rgb(255, 255, 255);
  17. font-weight: bold;
  18. text-align: center;
  19. border-bottom: 5px solid #363427;
  20. }
  21.  
  22. header {
  23. width: 100%;
  24. height: 60px;
  25. background-color: #2980b9;
  26. border-bottom: 5px solid #363427;
  27. }
  28.  
  29. ul {
  30. list-style: none;
  31. text-align: left;
  32. margin-left: 0;
  33. padding-left: 0;
  34. }
  35.  
  36. li {
  37. float: left;
  38. margin: 1px;
  39. background-color: red;
  40. width: 159px;
  41. height: 100px;
  42. }
  43.  
  44. #games {
  45. float: left;
  46. text-align: left;
  47. }
  48.  
  49. @media screen and (max-width:959px) {
  50. #container {
  51. width: 100%;
  52. }
  53. #logo_bg {
  54. font-size: 35px;
  55. }
  56. ul {
  57. list-style: none;
  58. text-align: left;
  59. }
  60. li {
  61. float: left;
  62. margin: 1px;
  63. background-color: red;
  64. width: 100%;
  65. height: 100px;
  66. }
  67. }
Add Comment
Please, Sign In to add comment