style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. html {
  6. display: table;
  7. margin : auto;
  8. }
  9. body {
  10. display : table-cell;
  11. vertical-align: middle;
  12. padding-top : 20px;
  13. padding-bottom: 20px;
  14. padding-left : 5px;
  15. padding-right : 5px;
  16. }
  17. a {
  18. text-decoration: none;
  19. }
  20. .title {
  21. text-align : center;
  22. font-family: Archivo, serif;
  23. color : #4f4f4f;
  24. font-size : 52px;
  25. }
  26. .subtitle {
  27. text-align : center;
  28. font-family: Archivo, serif;
  29. color : #4f4f4f;
  30. font-size : 44px;
  31. }
  32. .subtitle2 {
  33. text-align : center;
  34. font-family: Archivo, serif;
  35. color : #4f4f4f;
  36. font-size : 34px;
  37. }
  38. .signature {
  39. text-align : center;
  40. font-family: 'Permanent Marker', cursive;
  41. color : #2e2e2e;
  42. font-size : 46px;
  43. }
  44. .big-image {
  45. display : block;
  46. margin-left : auto;
  47. margin-right: auto;
  48. width : 40%;
  49. height : 40%;
  50. }
  51. .link {
  52. color : #3495eb;
  53. text-decoration: none;
  54. }
  55. .container {
  56. padding: 35px 50px 35px 50px;
  57. }
  58. .social-icon {
  59. padding : 10px;
  60. background-color: #222222;
  61. border-radius : 100px;
  62. width : 32px;
  63. height : 32px;
  64. }
  65. .social-icon:hover {
  66. transition : 0.5s ease;
  67. background-color: rgb(34, 34, 34, 0.4);
  68. }
  69. .social-icon:not(hover) {
  70. transition : 0.5s ease;
  71. background-color: #222222;
  72. }
  73. footer {
  74. display: table;
  75. margin : auto;
  76. }
  77. /* Extra small devices (phones, 600px and down) */
  78. @media only screen and (max-width: 600px) {
  79. .title {
  80. font-size: 36px;
  81. }
  82. .subtitle {
  83. font-size: 28px;
  84. }
  85. .signature {
  86. font-size: 28px;
  87. }
  88. .big-image {
  89. min-width: 100%;
  90. }
  91. .social-icon {
  92. width : 32px;
  93. height: 32px;
  94. }
  95. }