Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 KB | None | 0 0
  1. html {
  2. background-color: #e2e2e2;
  3. margin: 0;
  4. padding: 0;
  5. }
  6.  
  7. body {
  8. background-color: #fff;
  9. border-top: solid 10px #000;
  10. color: #000;
  11. font-size: .85em;
  12. font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
  13. margin: 0;
  14. padding: 0;
  15. }
  16.  
  17. header, footer, hgroup,
  18. nav, section {
  19. display: block;
  20. }
  21.  
  22. .float-left { float: left; }
  23. .float-right { float: right; }
  24. .clear-fix:after {
  25. content: ".";
  26. clear: both;
  27. display: block;
  28. height: 0;
  29. visibility: hidden;
  30. }
  31.  
  32. /* main layout
  33. ----------------------------------------------------------*/
  34. .content-wrapper {
  35. margin: 0 auto;
  36. max-width: 100%;
  37. }
  38.  
  39. #body {
  40. background-color: #fff;
  41. clear: both;
  42. padding-bottom: 35px;
  43. }
  44.  
  45. #body a { color: #000; }
  46.  
  47. #body a:hover {
  48. background-color: #a2998a;
  49. color: #005596;
  50. }
  51.  
  52. #body a:link { color: #000; }
  53. #body a:active { color: #000; }
  54. #body a:visited { color: #000; }
  55.  
  56. .main-content {
  57. background: url("../Images/accent.png") no-repeat;
  58. padding-left: 10px;
  59. padding-top: 30px;
  60. }
  61.  
  62. .email-counter {
  63. display: block;
  64. font-size: 13em;
  65. font-family: Consolas, Arial, monospace;
  66. font-weight: bold;
  67. text-align: center !important;
  68. vertical-align: middle;
  69. }
  70.  
  71. .mailbox-title {
  72. background-color: #fff;
  73. border: 1px solid #000 !important;
  74. color: #000;
  75. font-size: 2.5em;
  76. padding-bottom: 10px;
  77. text-align: center;
  78. vertical-align: middle;
  79. }
  80.  
  81. .mailbox-title a {
  82. color: #000;
  83. text-decoration: none;
  84. }
  85.  
  86. .mailbox {
  87. border: 3px solid #000;
  88. display: inline-block;
  89. height: auto;
  90. margin-top: 5px;
  91. width: 32.66%;
  92. }
  93.  
  94. .mailboxes-indicators { height: 400px; }
  95. header .content-wrapper { padding-top: 20px; }
  96. footer {
  97. clear: both;
  98. background-color: #e2e2e2;
  99. font-size: .8em;
  100. height: 100px;
  101. }
  102.  
  103.  
  104. /* site title
  105. ----------------------------------------------------------*/
  106. .site-title {
  107. font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
  108. line-height: 600%;
  109. margin: 0;
  110. text-align: center;
  111. }
  112.  
  113. .site-title a, .site-title a:hover, .site-title a:active {
  114. background: none;
  115. color: #c8c8c8;
  116. outline: none;
  117. text-decoration: none;
  118. }
  119.  
  120. .site-title .column { display: inline-block; }
  121. .site-title #logo {
  122. border: none;
  123. position: absolute;
  124. width: 25%;
  125. }
  126.  
  127. .site-title #page-title-container {
  128. position: relative;
  129. width: 133%;
  130. }
  131.  
  132. .site-title #page-title-container #page-title {
  133. color: #000;
  134. font-size: 4em;
  135. font-weight: bold;
  136. top: -15px;
  137. }
  138.  
  139. .site-title #page-title-container #latest-refresh-date-time {
  140. font-size: xx-large;
  141. text-align: center;
  142. top: -15px;
  143. }
  144.  
  145. #sum-of-emails-from-all-mailboxes {
  146. border: 3px solid #000;
  147. left: -60px;
  148. position: relative;
  149. width: 110%;
  150. }
  151.  
  152. #sum-display-name {
  153. background-color: #cadaa9;
  154. border: 1px solid #000;
  155. color: #000;
  156. font-size: 2.5em;
  157. position: relative;
  158. }
  159.  
  160. #sum-of-emails { font-size: 8em; }
  161.  
  162. @model IndicateursCourriels.ViewModels.CustomerServiceIndicatorsViewModel
  163.  
  164. @{
  165. ViewBag.Title = "DisplayIndicators";
  166. Layout = "~/Views/Shared/_Layout.cshtml";
  167. }
  168.  
  169. @section header {
  170. <div class="content-wrapper">
  171. <div class="site-title">
  172. <div class="column">
  173. <div id="page-title-container">
  174. <div id="page-title">
  175. @Html.DisplayFor(m => m.ViewTitle)
  176. </div>
  177. <div id="latest-refresh-date-time">
  178. @Html.DisplayFor(m => m.LatestRefreshDateTime)
  179. </div>
  180. </div>
  181. </div>
  182. <div class="column float-right">
  183. <div id="sum-of-emails-from-all-mailboxes">
  184. <div class="mailbox-title">
  185. @Html.DisplayFor(m => m.SumOfEmailsFromAllMailboxesDisplayName)
  186. </div>
  187. <div id="sum-of-emails" class="email-counter">
  188. @Html.DisplayFor(m => m.SumOfEmailsFromAllMailboxes)
  189. </div>
  190. </div>
  191. </div>
  192. </div>
  193. </div>
  194. }
  195.  
  196. <div class="mailboxes-indicators">
  197. <div class="mailbox">
  198. <div class="mailbox-title">
  199. @Html.DisplayFor(m => m.FirstMailboxName)
  200. </div>
  201. <div class="display-label" style="text-align: center;">
  202. <span class="email-counter"
  203. style="background-color: @Html.DisplayFor(m => m.FirstAlertLevelColour)">
  204. @Html.DisplayFor(m => m.FirstEmailCount)
  205. </span>
  206. </div>
  207. </div>
  208. <div class="mailbox">
  209. <div class="mailbox-title">
  210. @Html.DisplayFor(m => m.SecondMailboxName)
  211. </div>
  212. <div class="display-label">
  213. <span class="email-counter"
  214. style="background-color: @Html.DisplayFor(m => m.SecondAlertLevelColour)">
  215. @Html.DisplayFor(m => m.SecondEmailCount)
  216. </span>
  217. </div>
  218. </div>
  219. <div class="mailbox">
  220. <div class="mailbox-title">
  221. <a href='@Url.Action("EmailIndicatorManualInput", "CustomerServiceIndicators")'>
  222. @Html.DisplayFor(m => m.ThirdMailboxName)
  223. </a>
  224. </div>
  225. <div class="display-label" style="text-align: center;">
  226. <span class="email-counter"
  227. style="background-color: @Html.DisplayFor(m => m.ThirdAlertLevelColour)">
  228. @Html.DisplayFor(m => m.ThirdEmailCount)
  229. </span>
  230. </div>
  231. </div>
  232. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement