Advertisement
Guest User

CSS for FaithCMS

a guest
Nov 26th, 2010
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.64 KB | None | 0 0
  1. /*Login Page CSS*/
  2. #listItem
  3. {
  4.     font-size: 36px;
  5. }
  6.  
  7. #loginFailure
  8. {
  9.     color: Red;
  10. }
  11.  
  12. #loginForm
  13. {
  14.     left: 454px;
  15. }
  16.  
  17. .mainContent
  18. {
  19.     position: relative;
  20.     border: 1px solid #dd00dd;
  21.     left: 400px;
  22. }
  23.  
  24. .rememberPass
  25. {
  26.     position: relative;
  27.     left: 1px;
  28.     font-size: 16px;
  29. }
  30.  
  31. .passwordTextbox
  32. {
  33.     position: relative;
  34.     left: 5px;
  35.     width: 147px;
  36. }
  37.  
  38. .destinationSelection
  39. {
  40.     position: relative;
  41.     left: 120px;
  42. }
  43.  
  44. .submitButton
  45. {
  46.     position: relative;
  47.     left: 195px;
  48. }
  49.  
  50. /* End Login Page CSS*/
  51.  
  52. /*FaithCMSMaster Page CMS*/
  53. /*CMS page title styles*/
  54. .pageTitle
  55. {
  56.     padding-top: 20px;
  57.     padding-left: 20px;
  58.     font-size: 18px;
  59.     font-weight: bold;
  60. }
  61.  
  62. /*TitleContainer Styles*/
  63. .titleContainer
  64. {
  65.     width: 300px;
  66.     float: left;
  67.     background-color: Green;
  68. }
  69.  
  70. /*User welcome message*/
  71. .userWelcome
  72. {
  73.     position: relative;
  74.     font-size: 14px;
  75.     color: #008800;
  76. }
  77.  
  78. /*User logout button*/
  79. .logoutButton
  80. {
  81.     position: relative;
  82.     top: 10px;
  83.     left: 70%;
  84. }
  85.  
  86. /*User Panel Content Container Wrapper*/
  87. .userPanelWrapper
  88. {
  89.     float: right;
  90.     padding: 10px;
  91.     margin-right: 10px;
  92.     margin-left: 20px;
  93.     margin-top: 0px;
  94.     margin-bottom: 20px;
  95.     width: auto;
  96.     border: 1px solid #0000aa;
  97.     overflow: hidden; /*Keeps content inside the wrapper div*/
  98. }
  99.  
  100. /*User Panel Content Container*/
  101. .userPanel
  102. {
  103.     float: left;
  104.     width: 210px; /*Width used to allow margin-left to prevent content from clipping*/
  105.     margin-left: 225px; /*margin-left slightly bigger than the width to prevent clipping*/
  106.     margin: 5px;
  107. }
  108.  
  109. /*User logged in Message style*/
  110. .userLoggedInMessage
  111. {
  112.     font-size: 14px;
  113.     color: Red;
  114. }
  115.  
  116. /*Main content area style*/
  117. .contentPanel
  118. {
  119.     float: left;
  120.     margin-left: 10px;
  121.     margin-right: 0px;
  122.     border: 2px solid #41627E;
  123.     background-color: #B4CFEC;
  124.     width: 90%;
  125.     min-height: 100%;
  126.     height: 100%;/*For IE6 and below*/
  127. }
  128.  
  129. .rightContentWrapper
  130. {
  131.     float: left;
  132.     width: 90%;
  133.     margin-top: 1px;
  134.     margin-left: -5px;
  135. }
  136.  
  137. .headerWrapper
  138. {
  139.     border: 1px solid #0000dd;
  140.     float: left;
  141.     margin-left: -177px;
  142.     width: 95%;
  143. }
  144.  
  145. /*Wrapper that wraps the entire page (<div> tag)*/
  146. .mainWrapper
  147. {
  148.     width: 100%;
  149.     height: 100%;
  150.     min-width: 400px;
  151. }
  152.  
  153. /*Navigation Bar Styles*/
  154. *
  155. {
  156.     margin: 0;
  157.     padding: 0;
  158. }
  159.        
  160. html, body
  161. {
  162.     height: 100%;
  163.     margin: 0px;
  164. }
  165.  
  166. .navContainer
  167. {
  168.     margin-top: 111px;
  169.     background-color: #cccccc;
  170.     float: left;
  171.     width: 170px;
  172.     min-height: 100%;
  173.     height: 100%; /*For IE6 and lower*/
  174.     border: 1px solid blue;
  175.     padding: 3px;
  176. }
  177.        
  178. .navHeader
  179. {
  180.     background-color: #000099;
  181.     margin: 1px;
  182. }
  183.        
  184. .navHeaderText
  185. {
  186.     color: #dddddd;
  187.     text-align: center;
  188. }
  189.        
  190. .navLinks
  191. {
  192.     display: none;
  193.     position: relative;
  194.     background-color: #eeeeee;
  195.     border: 1px solid blue;
  196.     margin: 0px;
  197.     padding: 15px;
  198. }
  199.        
  200. a.navLink
  201. {
  202.     text-decoration: none;
  203.     color: #007700;
  204. }
  205.        
  206. a.navLink:hover
  207. {
  208.     /*Postion set to relative to allow the link to move 10 pixels to the left (relative to its original position)*/
  209.     position: relative;
  210.     left: 10px;
  211.     text-decoration: none;
  212.     color: #000077;
  213. }
  214.  
  215. /*News post error style*/
  216. .newsPostError
  217. {
  218.     color: Red;
  219.     font-size: 14px;
  220. }
  221.  
  222. /*End FaithCMSMaster Page CSS*/
  223.  
  224. /*Ticker styles*/
  225.  
  226. /*Ticker Div Style*/
  227. .ticker
  228. {
  229.     background-color: Maroon;
  230.     color: White;
  231.     margin-bottom: 15px;
  232.     margin-top: 5px;
  233.     height: 25px;
  234.     width: 750px;
  235. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement