Advertisement
MikeWP

Untitled

Jun 1st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. .site-header h1 {
  2. font-family: 'Titillium Web', sans-serif;
  3. font-size: 30px;
  4. color: #00C00D;
  5. width: 250px;
  6. }
  7.  
  8. .site-header-nav {
  9. height: 40px;
  10. padding: 0 5px;
  11. background: linear-gradient(to bottom right,
  12. rgba(38, 149, 242, 0.25), rgb(2, 132, 240));
  13. }
  14.  
  15. .site-nav-container {
  16. display: flex;
  17. justify-content: flex-end;
  18. }
  19.  
  20. .site-nav-buttons {
  21. display: inline-block;
  22. }
  23.  
  24. .site-nav-button {
  25. color: : #00C00D;
  26. border: 1px solid #00950A;
  27. border-radius: 5px;
  28. }
  29.  
  30. .site-nav-button a {
  31. text-decoration: none;
  32. color: #CEE5D0;
  33. font-family: 'Titillium Web', sans-serif;
  34. }
  35.  
  36. .container {
  37. max-width: 960px;
  38. margin: auto;
  39. display: flex;
  40. flex-wrap: wrap;
  41. justify-content: center;
  42. }
  43.  
  44. .image-gallery {
  45. width: 300px;
  46. height: 150px;
  47. margin: 20px;
  48. cursor: pointer;
  49. box-shadow: 1px 6px 8px 1px rgba(0, 0, 0, 0.40),
  50. 2px 8px 12px 2px rgba(0, 0, 0, 0.25);
  51. transition: width 1s,
  52. height 1s,
  53. box-shadow 1s;
  54. }
  55.  
  56. .image-gallery:hover {
  57. width: 320px;
  58. height:170px;
  59. box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25),
  60. 1px 6px 10px 1px rgba(0, 0, 0, 0.15);
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement