Guest User

Untitled

a guest
Dec 12th, 2020
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. /* Desktop */
  2. @media screen and (max-width: 1920px) {
  3. body {
  4. background-color: #101010;
  5. overflow: hidden;
  6. }
  7.  
  8. @font-face {
  9. font-family: "FiraCode", monospace;
  10. src: url(fonts/FiraCodeRegular.ttf)
  11. url(fonts/FiraCodeRegular.woff)
  12. url(fonts/FiraCodeRegular.woff2)
  13. }
  14.  
  15. .content {
  16. text-decoration: none;
  17. color: #b7b7b7;
  18. }
  19.  
  20. .content:hover {
  21. text-decoration: none;
  22. color: #FFFFFF;
  23. }
  24.  
  25. #section {
  26. background: #1e1e1e;
  27. border-radius: 15px;
  28. padding: 75px 25px;
  29. color: white;
  30. text-align: center;
  31. margin: 50px;
  32. min-width: 200px;
  33. min-height: 175px;
  34. font-size: 18px;
  35. font-family: "FiraCode", monospace;
  36. }
  37.  
  38. #flex {
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. height: 100vh;
  43. }
  44. }
  45.  
  46. /* Mobile */
  47. @media screen and (max-width: 768px) {
  48. body {
  49. background-color: #101010;
  50. overflow: hidden;
  51. }
  52.  
  53. @font-face {
  54. font-family: "FiraCode", monospace;
  55. src: url(fonts/FiraCodeRegular.ttf)
  56. url(fonts/FiraCodeRegular.woff)
  57. url(fonts/FiraCodeRegular.woff2)
  58. }
  59.  
  60. .content {
  61. text-decoration: none;
  62. color: #b7b7b7;
  63. }
  64.  
  65. .content:hover {
  66. text-decoration: none;
  67. color: #FFFFFF;
  68. }
  69.  
  70. #section {
  71. background: #1e1e1e;
  72. border-radius: 15px;
  73. padding: 75px 25px;
  74. color: white;
  75. text-align: center;
  76. margin: 50px;
  77. min-width: 200px;
  78. min-height: 175px;
  79. font-size: 18px;
  80. font-family: "FiraCode", monospace;
  81. }
  82.  
  83. #flex {
  84. display: flex;
  85. flex-direction: row;
  86. justify-content: center;
  87. align-items: center;
  88. height: 100vh;
  89. }
  90. }
  91.  
Advertisement
Add Comment
Please, Sign In to add comment