Advertisement
thequeenroyal

idea

Sep 9th, 2021
1,434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.78 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif&family=Montserrat:wght@400;700&family=PT+Mono&family=Poppins&display=swap');
  2. @font-face {
  3.    font-family: "Couture";
  4.   src: url(https://dl.dropbox.com/s/uooxtl95ioyu2f9/couture-bld.otf);
  5.  format("truetype"); }
  6. /* latin-ext */
  7. @font-face {
  8.   font-family: 'Montserrat';
  9.   font-style: normal;
  10.   font-weight: 400;
  11.   font-display: swap;
  12.   src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  13.   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;
  14. }
  15. #idea {
  16.   width: 268px;
  17.   height: auto;
  18.   margin: 25px 0 0;
  19. }
  20. #idea b {
  21.   color: var(--accent);
  22. }
  23. #idea .base {
  24.   width: 100%;
  25.   padding: 10px;
  26.   box-sizing: border-box;
  27.   border: var(--border);
  28.  background: var(--background);
  29.  
  30. }
  31. #idea .bg {
  32.   background: var(--background);
  33.   border: var(--border);
  34.   outline: 1px solid #000;
  35.   outline-offset: -5px;
  36. }
  37.  
  38. #idea .photo {
  39.   width: 100%;
  40.   height: 220px;
  41.   background: center/cover;
  42.   margin-top: 5px;
  43. }
  44.  
  45.  
  46. #idea .title {
  47.   font: 20px/150% Poppins;
  48.   color: var(--color);
  49.   text-transform: uppercase;
  50.   text-align: center;
  51.   padding: 5px;
  52. }
  53. #idea .rectangle {
  54.    width: 80%;
  55.   background: #df0174;
  56.   height: 3px;
  57.    box-sizing: border-box;
  58.   margin-top: -5px;
  59. }
  60. #idea .quote {
  61.   font: 13px/150% PT Mono;
  62.   text-transform: lowercase;
  63.   text-align: center;
  64.   color: var(--text);
  65.   width: 85%;
  66.   padding: 5px;
  67. }
  68.  
  69. #idea:after {
  70.   display: block;
  71.   content: "made by american queen";
  72.   padding: 5px 10px;
  73.   font: 10px Consolas;
  74.   text-transform: uppercase;
  75.   opacity: .4;
  76.   font-weight: bold;
  77.   color: #8c8c8c; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement