Advertisement
thequeenroyal

royals

Sep 8th, 2021
1,456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.56 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=Playfair+Display:wght@900&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. #royals {
  16.   width: 720px;
  17.   height: auto;
  18.   margin: 25px 0 0;
  19. }
  20. #royals b {
  21.   color: var(--accent);
  22. }
  23. #royals .base {
  24.   width: 100%;
  25.   padding: 20px;
  26.   box-sizing: border-box;
  27.   border: var(--border);
  28.  background: var(--background);
  29.  
  30. }
  31. #royals .head {
  32.   height: 30px;
  33.   width: 642px;
  34.   padding: 5px;
  35.   background: var(--background);
  36.   box-sizing: border-box;
  37.   border: var(--border);
  38. display: inline-block;
  39.   position: relative;
  40.     right: 3px;
  41. }
  42.  
  43. #royals .photo {
  44.   width: 100%;
  45.   height: 250px;
  46.   background: center/cover;
  47.   margin-top: 5px;
  48. }
  49. #royals .square {
  50.   width: 33px;
  51.   height: 30px;
  52.   background: #000;
  53.   padding: 5px;
  54.   box-sizing: border-box;
  55.   display: inline-block;
  56.   position: relative;
  57.   right: 5px;
  58. }
  59. #royals .line {
  60.   font: 13px/150% Montserrat;
  61.   color: var(--color);
  62. text-transform: uppercase;
  63.   text-align: center;
  64.   font-style: bold;
  65.  
  66. }
  67. #royals .title {
  68.   font: 30px/150% Playfair Display;
  69.   color: var(--color);
  70.   text-transform: uppercase;
  71.   text-align: center;
  72.   padding: 5px;
  73. }
  74. #royals .rectangle {
  75.    width: 80%;
  76.   background: #df0174;
  77.   height: 5px;
  78.    box-sizing: border-box;
  79.   margin-top: -8px;
  80. }
  81. #royals .quote {
  82.   font: 13px/150% PT Mono;
  83.   text-transform: lowercase;
  84.   text-align: center;
  85.   color: var(--text);
  86.   width: 85%;
  87.   padding: 5px;
  88. }
  89. #royals .postbase {
  90.   background: var(--background);
  91.   width: 100%;
  92.   padding: 30px;
  93.   box-sizing: border-box;
  94.  
  95. }
  96.  
  97. #royals .post {
  98.  
  99.   background: var(--background);
  100.   font: 13px/180% IBM Plex Serif;
  101.   text-align: justify;
  102.   letter-spacing: .5px;
  103.   padding: 10px;
  104.   box-sizing: border-box;
  105.   color: var(--text);
  106.  
  107. #royals:after {
  108.   display: block;
  109.   content: "made by american queen";
  110.   padding: 5px 10px;
  111.   font: 10px Consolas;
  112.   text-transform: uppercase;
  113.   opacity: .4;
  114.   font-weight: bold;
  115.   color: #8c8c8c; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement