You are here

dark.css in Maintenance Countdown 6

Same filename and directory in other branches
  1. 7 styles/dark.css
html, body {
  margin: 0;
  padding: 0;
  font-family: Tahoma;
}

body {
  text-align: center;
  background-color: #2e2e2e;
  color: #eee;
}

#page-title {
  color: #eee;
  font: 700 30px/1 sans;
  border-bottom: 1px solid #555;
  margin: 0;
  text-transform:uppercase;
}

#content-content {
	margin-top: 0px;
	margin-bottom: 40px;
}

#container {
	margin: 5em auto 3em;
	width: 600px;
	color: #eee;
}

#countdown_dashboard {
/* 	height: 96px; */
	margin-left: 125px;
	display: inline-block;
  margin: auto;
}

.dash {
	width: 138px;
	height: 96px;
	background: transparent url('../images/dash.png') 0 0 no-repeat;
	float: left;
	margin-left: 2px;
	padding-left: 13px;
	position: relative;
	color: #333;
}

.weeks_dash {
	background: transparent url('../images/dark_weeks_dash.png') 0 0 no-repeat;
}

.days_dash {
	background: transparent url('../images/dark_days_dash.png') 0 0 no-repeat;
}

.hours_dash {
	clear: left;
	background: transparent url('../images/dark_hours_dash.png') 0 0 no-repeat;
}

.minutes_dash {
	background: transparent url('../images/dark_minutes_dash.png') 0 0 no-repeat;
}

.seconds_dash {
	background: transparent url('../images/dark_seconds_dash.png') 0 0 no-repeat;
}

.dash .digit {
	font: bold 52pt Verdana;
	font-weight: bold;
	float: left;
	width: 59px;
	text-align: center;
	position: relative;
}

.dash_title {
	display: none;
}

#complete_message {
  border: 1px solid #222;
  border-radius: 10px;
  clear: both;
  display: none;
  line-height: 2;
  margin: 2em 1em;
  padding: 1em;
}
kbd {
  background-color: #222;
  border-color: #333 #111 #111 #333;
  border-radius: 4px;
  border-style: solid;
  border-width: 2px 4px 4px;
  font: 700 110% sans-serif;
  padding: 2px 5px;
  text-shadow: -1px 1px 1px #000;
}
#page_reload {
  background-color:#ddd;
  background-image: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#bbb));
  background-image: -webkit-linear-gradient(top, #ddd 0%,#bbb 100%);
  background-image: -o-linear-gradient(top, #ddd 0%,#bbb 100%);
  background-image: -ms-linear-gradient(top, #dddddd 0%,#bbbbbb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#bbbbbb',GradientType=0 );
  background-image: linear-gradient(top, #ddd 0%,#bbb 100%);
  border: 1px solid #aaa;
  border-radius: 4px;
  color: #555;
  display: block;
  font-size: 15pt;
  margin: 10px auto 0;
  padding: 2px 5px;
  text-decoration: none;
  text-shadow: 0 1px 1px #efefef, 1px 0 1px #e5e5e5;
  width: 50%;
}
#page_reload:hover {
  background-color: #bbbbbb;
  background-image: -moz-linear-gradient(top, #ddd 0%, #aaa 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#aaa));
  background-image: -webkit-linear-gradient(top, #ddd 0%,#aaa 100%);
  background-image: -o-linear-gradient(top, #ddd 0%,#aaa 100%);
  background-image: -ms-linear-gradient(top, #dddddd 0%,#aaaaaa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#aaaaaa',GradientType=0 );
  background-image: linear-gradient(top, #ddd 0%,#aaa 100%);
}

File

styles/dark.css
View source
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Tahoma;
  5. }
  6. body {
  7. text-align: center;
  8. background-color: #2e2e2e;
  9. color: #eee;
  10. }
  11. #page-title {
  12. color: #eee;
  13. font: 700 30px/1 sans;
  14. border-bottom: 1px solid #555;
  15. margin: 0;
  16. text-transform:uppercase;
  17. }
  18. #content-content {
  19. margin-top: 0px;
  20. margin-bottom: 40px;
  21. }
  22. #container {
  23. margin: 5em auto 3em;
  24. width: 600px;
  25. color: #eee;
  26. }
  27. #countdown_dashboard {
  28. /* height: 96px; */
  29. margin-left: 125px;
  30. display: inline-block;
  31. margin: auto;
  32. }
  33. .dash {
  34. width: 138px;
  35. height: 96px;
  36. background: transparent url('../images/dash.png') 0 0 no-repeat;
  37. float: left;
  38. margin-left: 2px;
  39. padding-left: 13px;
  40. position: relative;
  41. color: #333;
  42. }
  43. .weeks_dash {
  44. background: transparent url('../images/dark_weeks_dash.png') 0 0 no-repeat;
  45. }
  46. .days_dash {
  47. background: transparent url('../images/dark_days_dash.png') 0 0 no-repeat;
  48. }
  49. .hours_dash {
  50. clear: left;
  51. background: transparent url('../images/dark_hours_dash.png') 0 0 no-repeat;
  52. }
  53. .minutes_dash {
  54. background: transparent url('../images/dark_minutes_dash.png') 0 0 no-repeat;
  55. }
  56. .seconds_dash {
  57. background: transparent url('../images/dark_seconds_dash.png') 0 0 no-repeat;
  58. }
  59. .dash .digit {
  60. font: bold 52pt Verdana;
  61. font-weight: bold;
  62. float: left;
  63. width: 59px;
  64. text-align: center;
  65. position: relative;
  66. }
  67. .dash_title {
  68. display: none;
  69. }
  70. #complete_message {
  71. border: 1px solid #222;
  72. border-radius: 10px;
  73. clear: both;
  74. display: none;
  75. line-height: 2;
  76. margin: 2em 1em;
  77. padding: 1em;
  78. }
  79. kbd {
  80. background-color: #222;
  81. border-color: #333 #111 #111 #333;
  82. border-radius: 4px;
  83. border-style: solid;
  84. border-width: 2px 4px 4px;
  85. font: 700 110% sans-serif;
  86. padding: 2px 5px;
  87. text-shadow: -1px 1px 1px #000;
  88. }
  89. #page_reload {
  90. background-color:#ddd;
  91. background-image: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
  92. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#bbb));
  93. background-image: -webkit-linear-gradient(top, #ddd 0%,#bbb 100%);
  94. background-image: -o-linear-gradient(top, #ddd 0%,#bbb 100%);
  95. background-image: -ms-linear-gradient(top, #dddddd 0%,#bbbbbb 100%);
  96. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#bbbbbb',GradientType=0 );
  97. background-image: linear-gradient(top, #ddd 0%,#bbb 100%);
  98. border: 1px solid #aaa;
  99. border-radius: 4px;
  100. color: #555;
  101. display: block;
  102. font-size: 15pt;
  103. margin: 10px auto 0;
  104. padding: 2px 5px;
  105. text-decoration: none;
  106. text-shadow: 0 1px 1px #efefef, 1px 0 1px #e5e5e5;
  107. width: 50%;
  108. }
  109. #page_reload:hover {
  110. background-color: #bbbbbb;
  111. background-image: -moz-linear-gradient(top, #ddd 0%, #aaa 100%);
  112. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#aaa));
  113. background-image: -webkit-linear-gradient(top, #ddd 0%,#aaa 100%);
  114. background-image: -o-linear-gradient(top, #ddd 0%,#aaa 100%);
  115. background-image: -ms-linear-gradient(top, #dddddd 0%,#aaaaaa 100%);
  116. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#aaaaaa',GradientType=0 );
  117. background-image: linear-gradient(top, #ddd 0%,#aaa 100%);
  118. }