sexycullen

etainlives css code

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