Advertisement
Guest User

style.css

a guest
Jun 25th, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. /*
  2. Theme Name: Spun Child
  3. Theme URI: http://example.com/
  4. Description: Child theme for the Spun theme
  5. Author: E. D.
  6. Author URI: www.example.com
  7. Template: spun
  8. Version: 0.1.0
  9. */
  10.  
  11. @import url("../spun/style.css");
  12.  
  13. .hometitle{
  14. color: #fafafa;
  15. display: table-cell;
  16. font-family: Baskerville, "Playfair Display", "Times New Roman", serif;
  17. font-size: 32px;
  18. font-size: 3.2rem;
  19. font-style: italic;
  20. line-height: 32px;
  21. overflow: hidden;
  22. text-align: center;
  23. transition: .4s ease-in-out;
  24. -webkit-transition: .4s ease-in-out;
  25. -moz-transition: .4s ease-in-out;
  26. -o-transition: .4s ease-in-out;
  27. -ms-transition: .4s ease-in-out;
  28. vertical-align: middle;
  29. word-wrap: break-word;
  30. opacity:0;
  31. height: 107px;
  32. width: 180px;
  33. }
  34.  
  35. .hometitle:hover{
  36. opacity:1;
  37. transition: .4s ease-in-out;
  38. -webkit-transition: .4s ease-in-out;
  39. -moz-transition: .4s ease-in-out;
  40. -o-transition: .4s ease-in-out;
  41. -ms-transition: .4s ease-in-out;
  42. }
  43.  
  44. .blog .hentry span.hometitle {
  45. position: absolute;
  46. top: 0px;
  47. width: 100%;
  48. text-align: center;
  49. padding-top:73px;
  50. }
  51.  
  52. .blog .hentry {
  53. position: relative;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement