Advertisement
ssharma

CSS Format

Apr 8th, 2021
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.32 KB | None | 0 0
  1. *{
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5. body{
  6.     background: rgb(36, 36, 36);
  7. }
  8. .header-menu{
  9.     width: 100%;
  10.     height: fit-content;
  11.     background: gray;
  12. }
  13. .sec-01{
  14.     margin: auto;
  15.     width: 70%;
  16.     height: 80px;
  17.     background: green;
  18. }
  19. .sec-01 span{
  20.     text-align: center;
  21.     align-items: center;
  22.     font-size: 3vw;
  23.     cursor: pointer;
  24.     font-family: 'Oswald', sans-serif;
  25. }
  26. .menu-section-01{
  27.     margin: 20px auto;
  28.     width: 70%;
  29.     font-family: 'Open Sans', sans-serif;
  30. }
  31. .menu-section-01 ul{
  32.     list-style-type: none;
  33.     display: flex;
  34. }
  35. .menu-section-01 ul li{
  36.     padding: 3px 10px;
  37.     margin: 2px 2px;
  38.     cursor: pointer;
  39.     font-size: 1vw;
  40.     border-right: 1px solid black;
  41. }
  42. .menu-section-01 ul li:last-child{
  43.     border-right: none;
  44. }
  45. .jobs-heighlights{
  46.     margin: auto;
  47.     width: 70%;
  48. }
  49. .job-content marquee a{
  50.     color: white;
  51.     font-size: 1.1vw;
  52. }
  53. .content-division-001{
  54.     width: 100%;
  55.     background: grey;
  56.     margin: 30px auto auto auto;
  57.     height: fit-content;
  58. }
  59. .content-box-01{
  60.     width: 70%;
  61.     margin: auto;
  62.     background: ivory;
  63.     display: flex;
  64. }
  65. .content-box-010{
  66.     position: relative;
  67.     width: 32%;
  68.     border: 1px solid black;
  69.     margin: 5px 1.333%;
  70.  
  71. }
  72. .content-box-010 p{
  73.     width: auto;
  74.     background: chocolate;
  75.     text-align: center;
  76.     font-size: x-large;
  77.     align-items: center;
  78. }
  79. .content-box-010 ul{
  80.     list-style-type: none;
  81. }
  82. .content-box-010 ul li{
  83.     padding: 8px;
  84.     margin: 0.5vw;
  85. }
  86. .site-bottom-section{
  87.     width: 100%;
  88.     display: flex;
  89.     background: rgb(36, 36, 36);
  90.     height: fit-content;
  91. }
  92. .sub-division{
  93.     width: 70%;
  94.     margin: auto;
  95.     background: rgb(36, 36, 36);
  96. }
  97. .sub-division li{
  98.     color: white;
  99. }
  100. .sub-division label{
  101.     font-size: 2vw;
  102.     color: rgb(179, 179, 0);
  103.     cursor: pointer;
  104. }
  105. .bottom-section{
  106.     display: inline-block;
  107.     margin: 10px 2vw;
  108. }
  109. .section-03{
  110.     float: right;
  111.     width: 30%;
  112. }
  113. .section-03 ul li{
  114.     display: inline-block;
  115.     margin: 5px 30px;
  116.     padding: 0px 0px;
  117.     width: 30px;
  118. }
  119. .section-03 ul li a{
  120.     text-decoration: none;
  121.     color: white;
  122.     width: 100px;
  123. }
  124. .user_input{
  125.     border: none;
  126.     outline: none;
  127.     background: none;
  128.     border-bottom: 1px solid white;
  129.     font-size: 15px;
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement