Guest User

Untitled

a guest
May 10th, 2021
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. :root {
  2. --shadow: 1px 3px 10px #0005;
  3. --theblur: blur(0);
  4. }
  5.  
  6. @font-face {
  7. font-family: report;
  8. src: url(stuff/fonts/report.ttf);
  9. }
  10.  
  11. body {
  12. padding: 0;
  13. font-weight:40;
  14. font-family: report;
  15. }
  16. #thetext{
  17. font-size:16px;
  18. padding-top: 5px;
  19. color: #ffffff;
  20. text-align: right;
  21. margin-right: 15px;
  22. }
  23.  
  24. #window {
  25. width: 265px;
  26. margin-left: auto;
  27. margin-right: auto;
  28. margin-top: 0;
  29. padding: 10px;
  30. display: flex;
  31. flex-direction: column;
  32. }
  33.  
  34. #window #body {
  35. position: relative;
  36. background-color: var(--bodyBackgroundColor);
  37. padding: 18px;
  38. border-radius: 25px;
  39. box-shadow: var(--shadow);
  40. z-index: 1;
  41. }
  42.  
  43. #window #body:before {
  44. content: "";
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. right: 0;
  49. bottom: 0;
  50. z-index: -1;
  51. border-radius: 20px;
  52. -webkit-backdrop-filter: var(--theblur);
  53. }
  54.  
  55. #Picturebox {
  56. height:30%;
  57. padding:0px;
  58. border-radius:15px;
  59. font-size:10px;
  60. background-image: url("stuff/picture/pic.jpg");
  61. background-size:cover;
  62. }
  63.  
  64. #timebox {
  65. position: relative;
  66. top: -32px;
  67. left: -8px;
  68. color: #ffffff;
  69. z-index: 2;
  70. width:50px;
  71. height:30px;
  72. border-radius:17px;
  73. background-color:#6f57e0;
  74. font-size:14px;
  75. vertical-align: middle;
  76. text-align: center;
  77. line-height: 32px;
  78. box-shadow: var(--shadow);
  79. border-style: solid;
  80. border-width: 8px;
  81. border-color: #846bfb;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment