Advertisement
nikitast

style

Feb 19th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.38 KB | None | 0 0
  1.  body {
  2.   font-family: 'Fira Sans';
  3. }
  4.  
  5. .module-card {
  6.   margin-right: 0;
  7. }
  8.  
  9. .colors-card {
  10.   margin-right: 0;
  11. }
  12.  
  13. .rules {
  14.   width: 910px;
  15.   margin: 90px auto 0px;
  16. }
  17.  
  18. .image {
  19.   height: 420px;
  20.   width: 420px;
  21.   background-size: cover;
  22.   background-position: center;
  23.   box-sizing: border-box;
  24. }
  25.  
  26. .card {
  27.   min-height: 420px;
  28.   width: 420px;
  29.   display: inline-block;
  30.   vertical-align: top;
  31.   margin-right: 65px;
  32. }
  33.  
  34. .module {
  35.   height: 420px;
  36.   width: 420px;
  37.   border-width: 5px;
  38.   border-style: solid;
  39.   border-color: #ff3333;
  40.   background-image: url('https://pictures.s3.yandex.net/grid.jpg');
  41. }
  42.  
  43. .near {
  44.   background-image: url('https://pictures.s3.yandex.net/proximity.jpg');
  45. }
  46.  
  47. .fonts {
  48.   background-image: url('https://pictures.s3.yandex.net/type.jpg');
  49. }
  50.  
  51. .colors {
  52.   background-image: url('https://pictures.s3.yandex.net/color.jpg');
  53. }
  54.  
  55. .header {
  56.   height: 100vh;
  57.   background-color: rgba(255, 0, 0, 0.7);
  58.   text-align: center;
  59.   color: #fff;
  60.   background-image: url(https://pictures.s3.yandex.net/background.jpg);
  61.   background-size: cover;
  62.   background-position: center bottom;
  63.   padding-top: 120px;
  64. }
  65.  
  66. h1 {
  67.   font-size: 55;
  68.   line-height: 240x;
  69.   font-family: 'Anonymous Pro';
  70.   text-transform: uppercase;
  71. }
  72.  
  73. h2 {
  74.   font-size: 25px;
  75.   line-height: 30px;
  76.   letter-spacing: 0.5px;
  77.   width: 630px;
  78.   margin: 46px auto 0px;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement