main.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .contact-icon button{
  2. border-top-right-radius: 4px;
  3. border-bottom-right-radius: 4px;
  4. }
  5. .blink_me {
  6. animation: blinker 1s linear infinite;
  7. }
  8. @keyframes blinker {
  9. 50% {
  10. border: 1px solid red;
  11. }
  12. }
  13. .card-component-container .contact-card {
  14. display: block;
  15. width: 375px;
  16. }
  17. .contact-card div:not(.row) {
  18. display: block;
  19. }
  20. .contact-card .top-part .header-top {
  21. padding-top: 10px;
  22. padding-bottom: 10px;
  23. margin-bottom: 10px;
  24. padding-left: 25px;
  25. display: flex;
  26. }
  27. .contact-card .header-top > div {
  28. display: inline-block;
  29. }
  30. .contact-card .header-top > .icon {
  31. width: 60px;
  32. display: inline-flex;
  33. font-size: 2em;
  34. margin-right: 15px;
  35. }
  36. .contact-card .icon > img {
  37. margin: auto;
  38. width: 60px;
  39. height: 60px;
  40. }
  41. .contact-card .bottom-part {
  42. padding: 10px 15px;
  43. }
  44. .contact-card .label {
  45. display: block;
  46. color: #424242;
  47. text-shadow: none;
  48. padding: 0.5rem 0 0 0;
  49. margin-bottom: 0;
  50. }
  51. .contact-card .content-block > div > div {
  52. display: inline-block;
  53. float: left;
  54. }
  55. .contact-card .content-block > div > div:after {
  56. clear: both;
  57. content: '';
  58. }
  59. .contact-card .content-block .label-box {
  60. width: 25%;
  61. font-size: 0.85em;
  62. font-weight: bold;
  63. text-align: right;
  64. margin-right: 5%;
  65. }
  66. .contact-card .content-block .text-box {
  67. width: 70%;
  68. min-height: 25px;
  69. font-size: 0.85em;
  70. }
  71. .contact-card hr {
  72. margin: 0;
  73. }
  74. .contact-card div {
  75. min-height: 0px;
  76. }
  77. .contact-card .bottom-part .btn {
  78. border-radius: 50%;
  79. display: inline-block;
  80. margin: 0 5px;
  81. }