style.css 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. body {
  2. margin: 0;
  3. }
  4. .vizitka {
  5. border: 2px black solid;
  6. border-radius: 8px;
  7. width: 300px;
  8. height: 100px;
  9. position: relative;
  10. margin: 100px;
  11. /* overflow: hidden; */
  12. }
  13. .vizitka:hover .info {
  14. visibility: visible;
  15. opacity: 1;
  16. }
  17. .vizitka:hover .cloud {
  18. visibility: visible;
  19. opacity: 1;
  20. }
  21. img {
  22. border: 1px black solid;
  23. border-radius: 5px;
  24. float: left;
  25. margin: 10px;
  26. height: 60px;
  27. width: 72px;
  28. height: 72px;
  29. }
  30. .text {
  31. line-height: 0.8;
  32. overflow: hidden;
  33. }
  34. blockquote {
  35. font-size: 20px;
  36. margin-top: 10px;
  37. }
  38. div > p {
  39. font-size: 15px;
  40. line-height: 0.1;
  41. }
  42. .info {
  43. position: absolute;
  44. bottom: 129%;
  45. left: 85px;
  46. visibility: hidden;
  47. transition: all 0.2s linear;
  48. opacity: 0;
  49. text-align: center;
  50. width: 150px;
  51. font-size: 25px;
  52. z-index: 3;
  53. }
  54. .cloud {
  55. width: 150px;
  56. height: 60px;
  57. position: absolute;
  58. bottom: 102%;
  59. left: 85px;
  60. margin: 0;
  61. z-index: 2;
  62. visibility: hidden;
  63. transition: all 0.2s linear;
  64. opacity: 0;
  65. border: 1px white solid;
  66. }