Guest User

Untitled

a guest
Nov 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. /* add scroll bar and to prevent background picture from adjusting position */
  2. html {
  3. overflow-y: scroll;
  4. position: relative;
  5. width: 100%;
  6. }
  7.  
  8. /* to look at borders use
  9.  
  10. * {
  11. border: 1px solid red;
  12. }
  13.  
  14. */
  15.  
  16. * {
  17. box-sizing: border-box;
  18. }
  19.  
  20. /* background color and font */
  21. body {
  22. background-color: #FFF5EE;
  23. font-family: Verdana, Geneva, sans-serif;
  24. }
  25.  
  26. /* navigation bar */
  27.  
  28. .nav ul li {
  29. display: inline-block;
  30. list-style: none;
  31. }
  32.  
  33. .container-fluid {
  34. position: fixed;
  35. width: 100% !important;
  36. top: 0px;
  37. left: 0px;
  38. background: rgba(230, 230, 250, 0.5);
  39. }
  40.  
  41. .navcontainer {
  42. width: 75%;
  43. margin: auto;
  44. }
  45.  
  46. .left {
  47. float: left;
  48. padding: 0%;
  49. }
  50.  
  51. .right {
  52. float: right;
  53. padding: 0%;
  54. }
  55.  
  56. .nav {
  57. position: fixed;
  58. width: 100% !important;
  59. top: 0;
  60. left: 0;
  61. background: rgba(230, 230, 250, 0.5);
  62. }
  63.  
  64. selector:pseudo-class {
  65. property: value;
  66. }
  67.  
  68. nav a {
  69. color: #000;
  70. padding: 5px;
  71. }
  72.  
  73. nav a:hover {
  74. color: #E6E6FA;
  75. text-decoration: line-through;
  76. transition: color 600ms;
  77. -webkit-transition: color 600ms;
  78. }
  79.  
  80. nav {
  81. z-index: 1;
  82. }
  83.  
  84. /* adjusting jumbotron background image, paragraph, and links */
  85.  
  86. .jumbotron {
  87. background-image: url("../img/landscape.jpg");
  88. height: 450px;
  89. background-size: cover no-repeat;
  90. background-position: 0px -425px;
  91. background-attachment: fixed;
  92. }
  93.  
  94. .jumbotron p {
  95. color: white;
  96. }
  97.  
  98. .jumbotron a {
  99. border-style: none;
  100. background-color: rgba(255, 255, 255, 0);
  101. color: black;
  102. padding: 5px;
  103. }
  104.  
  105. .section {
  106.  
  107. }
  108.  
  109. .header h1 {
  110. text-align: center;
  111. }
  112.  
  113. /* Applied to pages in general */
  114. /* center images in about page */
  115. .img-thumbnail {
  116. display: block;
  117. margin-left: auto;
  118. margin-right: auto;
  119. }
  120.  
  121. /* Index Page */
  122. /* column grid pictures alignment */
  123. .col-sm {
  124. text-align: center;
  125. margin: 0% auto;
  126. }
  127.  
  128. .containerg {
  129. padding-top: 1%;
  130. }
  131.  
  132. .img-fluid {
  133. border-style: solid;
  134. border-color: #FFFFFF;
  135. }
  136.  
  137. .conp {
  138. width: 60%;
  139. margin-left: auto;
  140. margin-right: auto;
  141. text-align: center;
  142. }
  143.  
  144. /* About Page */
  145. /* change container3 alignment */
  146. h2 {
  147. text-align: center;
  148. }
  149.  
  150. .container3 {
  151. width: 60%;
  152. margin-left: auto;
  153. margin-right: auto;
  154. }
  155.  
  156. img {
  157. display: block;
  158. margin-left: auto;
  159. margin-right: auto;
  160. }
  161.  
  162.  
  163. /* adjust skill column contents to have different bullet point and indentation */
  164. .skill h4,
  165. .skill ul {
  166. margin-left: 15px;
  167. }
  168.  
  169. #skill-list {
  170. list-style: square;
  171. padding-left: 20px;
  172. }
  173.  
  174. /* adjust main column to have contents be side by side */
  175. .column {
  176. width: 30%;
  177. padding: 8px;
  178. display: inline-block;
  179. float: left;
  180. }
  181.  
  182. /* adjust pixels between picture and more about me */
  183. .main-text {
  184. padding: 15px;
  185. clear:both;
  186. }
  187.  
  188. /* Contact Page */
  189. /* column grid */
  190. .col-sm-3 {
  191. margin: auto;
  192. }
  193.  
  194. /* adjust comission status */
  195. .jrequest {
  196. color: #FF0000;
  197. text-transform: uppercase;
  198. font-weight: 400;
  199. }
  200.  
  201. .wrequest {
  202. color: #00FF00;
  203. text-transform: uppercase;
  204. font-weight: 400;
  205. }
  206.  
  207. /* FAQ Page */
  208. /* collapse FAQ */
  209. .card-header {
  210. background: #BC8F8F;
  211. }
  212.  
  213. .card-header button {
  214. color: #000000;
  215. }
  216.  
  217. .card-body {
  218. font-size: 18px;
  219. background-color: #FFF5EE;
  220. }
  221.  
  222. .containerc {
  223. width: 60%;
  224. margin-left: auto;
  225. margin-right: auto;
  226. }
  227.  
  228. /* carousel to cover screen */
  229. .carousel {
  230. height: 100vh;
  231. width: 100%;
  232. overflow:hidden;
  233. }
  234. .carousel .carousel-inner {
  235. height: 100%;
  236. }
Add Comment
Please, Sign In to add comment