Advertisement
sexycullen

theme 212 CSS

May 23rd, 2020
1,295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. /* maziekeen's theme 212
  2. css part */
  3.  
  4. /* container wrapping everything */
  5. .layout-container {
  6. max-width: 540px;
  7. min-width: 300px;
  8. line-height: 150%;
  9. box-sizing: border-box;
  10. text-align: left;
  11. }
  12.  
  13. /* each profile box */
  14. .profile {
  15. margin-bottom: 25px;
  16. outline: 1px solid #f5f5f5; /* you'll have to change the color here, or delete this line if you don't want the border */
  17. }
  18.  
  19. /* each row wrapping the first info,
  20. ex: 1 row: full name and main aliases, 2 row: birth year and species/gender */
  21. .profile-row {
  22. display: flex;
  23. justify-content: center;
  24. }
  25.  
  26. /* each info individually (name and description), full name is an info, main aliases is an info, links is an info, birth year is an info */
  27. .profile-info {
  28. width: 100%;
  29. display: inline-block;
  30. margin: 5px 15px;
  31. }
  32.  
  33. .profile-title {
  34. font-weight: bold;
  35. padding: 0 5px 0;
  36. display: block;
  37. text-transform: uppercase;
  38. }
  39.  
  40. .profile-description {
  41. max-height: 200px;
  42. padding: 0 5px 0;
  43. display: inline-block;
  44. overflow: auto;
  45. }
  46.  
  47. /* maziekeen's theme 212
  48. css part */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement