Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1.  
  2. /*
  3. * Theme Name: BoldCoastCreative
  4. * Theme URI: https://github.com/petesaia/WP-Rye
  5. * Description: The Bold Coast Creative Website.
  6. * Author: Alex McKay
  7. * Version: 1
  8. * Tags: html5, bold coast creative, clean, basic, semantic, starter, grunt, stylus, maine
  9. */
  10.  
  11. /* It's recommended that styles are put in assets/css/*, not here. */
  12.  
  13. @import url("html5.css");
  14.  
  15. * {
  16. font-family: "raleway", sans-serif;
  17. }
  18. h1 {
  19. text-transform: uppercase;
  20. }
  21.  
  22. a:link {
  23. color: #FFFFFF;
  24. }
  25. a:visited {
  26. color: #FFFFFF;
  27. }
  28. a: hover {
  29. color: #141414;
  30. }
  31.  
  32. .container {
  33. height: 940px;
  34. max-width: 940px;
  35. margin: auto;
  36. }
  37. .banner {
  38. width: full;
  39. background-size: cover;
  40. background-repeat: no-repeat;
  41. height: 400px;
  42. margin: 0;
  43. position: relative;
  44. }
  45. .container .banner {
  46. position: static;
  47. top: 100px;
  48. }
  49. .bannertext {
  50. position: absolute;
  51. top: 50%;
  52. transform: translateY(-50%);
  53. width: 100%;
  54. text-align: center;
  55. color: #FFFFFF;
  56. margin: auto;
  57.  
  58. }
  59. .bannertext h1 {
  60. font-size: 100px;
  61. margin: 0;
  62. }
  63. .bannertext h4 {
  64. margin: 0px;
  65. }
  66.  
  67. .nav {
  68. width: 100%;
  69. background-color: #444444;
  70. position: fixed;
  71. }
  72.  
  73. .navlinks {
  74. font-style: strong ;
  75. color: #FFFFFF;
  76. text-align: center;
  77. list-style: none ;
  78. }
  79.  
  80. .navlinks ul li {
  81. float: left;
  82. margin: 0;
  83. padding: 0;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement