Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. /* cyrillic-ext */
  2. @font-face {
  3. font-family: 'Montserrat';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
  7. unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  8. }
  9. /* cyrillic */
  10. @font-face {
  11. font-family: 'Montserrat';
  12. font-style: normal;
  13. font-weight: 400;
  14. src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
  15. unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  16. }
  17. /* vietnamese */
  18. @font-face {
  19. font-family: 'Montserrat';
  20. font-style: normal;
  21. font-weight: 400;
  22. src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
  23. unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  24. }
  25. /* latin-ext */
  26. @font-face {
  27. font-family: 'Montserrat';
  28. font-style: normal;
  29. font-weight: 400;
  30. src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  31. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  32. }
  33. /* latin */
  34. @font-face {
  35. font-family: 'Montserrat';
  36. font-style: normal;
  37. font-weight: 400;
  38. src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  39. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  40. }
  41. /* latin-ext */
  42. @font-face {
  43. font-family: 'Raleway';
  44. font-style: normal;
  45. font-weight: 400;
  46. src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v12/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
  47. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  48. }
  49. /* latin */
  50. @font-face {
  51. font-family: 'Raleway';
  52. font-style: normal;
  53. font-weight: 400;
  54. src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v12/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
  55. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  56. }
  57.  
  58. body {
  59. font-family: 'Raleway', sans-serif;
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. justify-content: center;
  64. background: #fff;
  65. }
  66.  
  67. body > * + * {
  68. margin-top: 20px;
  69. }
  70.  
  71. form > * + * {
  72. margin-top: 20px;
  73. }
  74.  
  75. input[type=submit] {
  76. padding: 8px 20px;
  77. background: transparent;
  78. border: 1px solid #000;
  79. cursor: pointer;
  80. transition: 0.2s;
  81. }
  82.  
  83. input[type=submit]:hover {
  84. background: #4286f4;
  85. border-color: #4286f4;
  86. color: #fff;
  87. }
  88.  
  89. h1, h2, h3, h4, th {
  90. font-family: 'Montserrat', 'Raleway', sans-serif;
  91. }
  92.  
  93. table {
  94. border-collapse: collapse;
  95. }
  96.  
  97. td,th {
  98. padding: 8px;
  99. border: 1px solid #000;
  100. }
  101.  
  102. a {
  103. color: #000;
  104. text-decoration: none;
  105. transition: 0.2s color;
  106. }
  107.  
  108. a:hover {
  109. color: #4286f4;
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement