Advertisement
ukamori

flopxiao tut codes

Jul 26th, 2022 (edited)
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.88 KB | None | 0 0
  1. <!--- COLUMN STYLING --->
  2. <style>
  3. #container01 > .wrapper > .inner > :nth-child(1) {
  4. margin-left: auto;
  5. margin-right: auto;
  6. width: 36%;
  7. border-radius: 0em 1em 1em 1em;
  8. border: 1px solid #ff93c9;
  9. padding: 6px;
  10. background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,212,234,1) 50%, rgba(255,255,255,1) 100%);
  11. }
  12. #container01 > .wrapper > .inner > :nth-child(2) {
  13. width: 60%;
  14. margin-left: auto;
  15. margin-right: auto;
  16. border-radius: 1em 0em 1em 1em;
  17. border: 1px solid #ff93c9;
  18. padding: 6px;
  19. height: 18em;
  20. overflow: auto;
  21. background: radial-gradient(circle, rgba(255,212,234,1) 50%, rgba(255,255,255,1) 100%);
  22. }
  23. #container01 {
  24. justify-content: space-between !important;
  25. margin: auto;
  26. border-radius: 1em;
  27. }
  28. </style>
  29.  
  30.  
  31. <!--- CSS STYLING --->
  32. <style>
  33. @font-face {
  34. font-family: utonium;
  35. src: url(https://dl.dropbox.com/s/i1ca9p2b9cwhzbg/Utonium.otf);
  36. }
  37. @font-face {
  38. font-family:chick;
  39. src:url(https://dl.dropbox.com/s/wrt1sab5vv6r25n/CHICK___.TTF);
  40. }
  41.  
  42. #text01 {
  43. font-family: utonium;
  44. background: linear-gradient(180deg, rgba(255,187,221,1) 0%, rgba(255,234,246,1) 100%);
  45. -webkit-background-clip: text;
  46. -webkit-text-fill-color: transparent;
  47. -webkit-text-stroke: 1px #ffa9d4;
  48. -webkit-filter: drop-shadow(0px 0px 1px #ff93c9);
  49. font-style: italic;
  50. font-size: 2em;
  51. }
  52.  
  53. #text02 {
  54. padding: 4px;
  55. background:#ffd4ea;
  56. border: 1px solid #ff93c9;
  57. border-radius: 0.5em;
  58. }
  59.  
  60. #text03, #text04, #text05, #text06, #text07 {
  61. padding: 8px;
  62. border: 1px solid #ff93c9;
  63. border-radius: 0.5em;
  64. background: white;
  65. }
  66.  
  67. #image01 {
  68. border: 1px solid #ff93c9;
  69. }
  70.  
  71. mark {
  72. font-family:chick;
  73. font-size:1.25em;
  74. color: white;
  75. -webkit-text-stroke: 1px #ffbbdd;
  76. background: radial-gradient(circle, rgba(255,212,234,1) 0%, rgba(255,255,255,1) 100%);
  77. padding-top: 3px;
  78. padding-bottom: 2px;
  79. padding-left: 15px;
  80. padding-right: 15px;
  81. border: 1px solid #ffa9d4;
  82. border-radius: 70%;
  83. }
  84. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement