Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. h1,h2{
  2. font-family: 'Alegreya SC', serif;
  3. }
  4. .nice_to_meet_you{
  5. margin-left:40px;
  6. background-color:#E5E5E5;
  7. padding-bottom: 30px;
  8.  
  9. }
  10. .hello{
  11. margin-left:50%;
  12.  
  13. }
  14. .intro{
  15. background-color: #934A5F;
  16.  
  17. }
  18. *{
  19. font-family: 'Source Serif Pro', serif;
  20.  
  21.  
  22. }
  23.  
  24. p{
  25. margin-left: 5%;
  26. margin-right: 5%;
  27. }
  28. .pablo_quote{
  29. background-color: #934A5F;
  30. color:white;
  31. text-align: center;
  32. padding:30px;
  33. }
  34. .character_title{
  35. margin-left:50%;
  36.  
  37. }
  38. .emphasis{
  39. text-emphasis:
  40.  
  41.  
  42. }
  43. #get_in_touch{
  44. background-color:#E5E5E5;
  45. padding-bottom: 30px;
  46. }
  47. #headshot{
  48. border-radius: 50%;
  49. width:120px; /* you can use % */
  50. height: auto;
  51.  
  52. }
  53.  
  54. /*these media queries are for later*/
  55. /*
  56. ##Device = Desktops
  57. ##Screen = 1281px to higher resolution desktops
  58. */
  59.  
  60. @media (min-width: 1281px) {
  61.  
  62. //CSS
  63.  
  64. }
  65.  
  66. /*
  67. ##Device = Laptops, Desktops
  68. ##Screen = B/w 1025px to 1280px
  69. */
  70.  
  71. @media (min-width: 1025px) and (max-width: 1280px) {
  72.  
  73. //CSS
  74.  
  75. }
  76.  
  77. /*
  78. ##Device = Tablets, Ipads (portrait)
  79. ##Screen = B/w 768px to 1024px
  80. */
  81.  
  82. @media (min-width: 768px) and (max-width: 1024px) {
  83.  
  84. //CSS
  85.  
  86. }
  87.  
  88. /*
  89. ##Device = Tablets, Ipads (landscape)
  90. ##Screen = B/w 768px to 1024px
  91. */
  92.  
  93. @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  94.  
  95. //CSS
  96.  
  97. }
  98.  
  99. /*
  100. ##Device = Low Resolution Tablets, Mobiles (Landscape)
  101. ##Screen = B/w 481px to 767px
  102. */
  103.  
  104. @media (min-width: 481px) and (max-width: 767px) {
  105.  
  106. //CSS
  107.  
  108. }
  109.  
  110. /*
  111. ##Device = Most of the Smartphones Mobiles (Portrait)
  112. ##Screen = B/w 320px to 479px
  113. */
  114.  
  115. @media (min-width: 320px) and (max-width: 480px) {
  116.  
  117. /*box-sizing:border-box;
  118.  
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement