Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. @media (max-width: 460px) {
  2. .red-text {
  3. color: #1E90FF;
  4. }
  5. img{
  6. max-width: 100%;
  7. display: block;
  8. height: auto;
  9. }
  10. h2 {
  11. font-family: Lobster, monospace;
  12. text-align: center;
  13. font-size: 50px;
  14. }
  15. .tamaño1 {
  16. font-size: 17px;
  17. }
  18. p {
  19. font-size: 25px;
  20. font-family: Lobster;
  21. text-align: center;
  22. }
  23. .thick-green-border {
  24. border-color: rgb(107, 170, 170);
  25. border-width: 10px;
  26. border-style: solid;
  27. border-radius: 50%;
  28. display: block;
  29. margin-left: auto;
  30. margin-right: auto;
  31. height: 200px;
  32. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  33. }
  34. .smaller-image {
  35. width: 100px;
  36. }
  37.  
  38.  
  39. body {
  40. background-color: antiquewhite;
  41. }
  42. .fullCard {
  43.  
  44. border: 1px solid #ccc;
  45. border-radius: 15px;
  46. margin: 10px 5px;
  47. padding: 4px;
  48. width: 350px;
  49. margin-left: auto;
  50. margin-right: auto;
  51. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  52. background: linear-gradient(35deg,#CCFFFF, #FFCCCC );
  53. font-family: Montserrat;
  54.  
  55. }
  56. a{
  57. color: black;
  58. }
  59. a:hover{
  60. color: blue;
  61. }
  62.  
  63.  
  64.  
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement