Advertisement
thequeenroyal

montero

Jul 10th, 2021
1,657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.34 KB | None | 0 0
  1. @font-face {
  2.    font-family: "Couture";
  3.   src: url(https://dl.dropbox.com/s/uooxtl95ioyu2f9/couture-bld.otf);
  4.  format("truetype"); }
  5. /* latin-ext */
  6. @font-face {
  7.   font-family: 'Montserrat';
  8.   font-style: normal;
  9.   font-weight: 400;
  10.   font-display: swap;
  11.   src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  12.   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;
  13. }
  14. /* latin */
  15. @font-face {
  16.   font-family: 'Montserrat';
  17.   font-style: normal;
  18.   font-weight: 400;
  19.   font-display: swap;
  20.   src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  21.   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;
  22. }
  23.   #montero {
  24.   width: 268px;
  25.  margin: 25px 0 0;
  26.   padding: 10px;
  27.   --bording: 1px solid #000;
  28. }
  29. #montero .borders {
  30.   width: 100%;
  31.   height: 150px;
  32.   border: var(--bording);
  33.   padding: 10px;
  34.   outline-offset: -5px;
  35.   outline: 1px solid #000;
  36. }
  37. #montero .foto {
  38.   width: 100%;
  39.   height: 150px;
  40.   background: center/cover;
  41.   }
  42. #montero .bg {
  43.   opacity: 0;
  44.   width: 100%;
  45.   height: 150px;
  46.   transition-duration: 0.5s;  
  47.   -moz-transition-duration: 0.5s;  
  48.   -webkit-transition-duration: 0.5s;  
  49.   -o-transition-duration: 0.5s;
  50.  
  51. }
  52. #montero .bg:hover {
  53.   opacity: 1;
  54. }
  55. #montero .text {
  56.   width: 100%;
  57.     box-sizing: border-box;
  58.   height: 150px;
  59.   border: 1px solid transparent;
  60.   text-align: center;
  61.   background: #000;
  62. }
  63.  
  64. #montero .text h1 {
  65.   font: 20px Couture;
  66.   color: var(--accent);
  67.   text-align: center;
  68. text-transform: uppercase;
  69.  position: relative;
  70.  top: 45px;
  71.  
  72. }
  73. #montero .text h2 {
  74.   font: 9px/105% Montserrat;
  75.   text-transform: uppercase;
  76.   text-align: justify;
  77.   color: var(--text);
  78.    line-height: 150%;
  79.   position: relative;
  80.   top: 30px;
  81.   padding: 5px;
  82.   box-sizing: border-box;
  83. }
  84.  
  85. #montero:after {
  86.    display: block;
  87.   content: "made by american queen";
  88.   padding: 5px 10px;
  89.   font: 10px Consolas;
  90.   text-transform: uppercase;
  91.   font-weight: bold;
  92.   opacity: .4;
  93.   color: #8c8c8c; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement