Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. /*Forms.css*/
  2. /*used by Create and Edit cshtml files*/
  3.  
  4.  
  5. /*text entry formatting*/
  6. /*
  7.  
  8. .tile {
  9. width: 90%;
  10. float:left;
  11. background: url(shadowAlpha.png) no-repeat bottom right !important;
  12. background: url(shadow.gif) no-repeat bottom right;
  13. margin: 10px 0 0 10px !important;
  14. margin: 10px 0 0 5px;
  15. }
  16.  
  17. .tile div {
  18. background: none !important;
  19. background: url(shadow2.gif) no-repeat left top;
  20. padding: 0 !important;
  21. padding: 0 6px 6px 0;
  22. }
  23.  
  24. .tile p {
  25. color: #777;
  26. background-color: #fff;
  27. font: italic 1em georgia, serif;
  28. border: 1px solid #a9a9a9;
  29. padding: 4px;
  30. margin: -6px 6px 6px -6px !important;
  31. margin: 0;
  32. }
  33. */
  34. .preview
  35. {
  36. background-color:#425699;
  37. position:absolute;
  38. left:400px;
  39. top:150px;
  40. width:300px;
  41. height:150px;
  42. z-index:2;
  43. cursor:pointer;
  44. }
  45.  
  46. .tile
  47. {
  48. border-radius: 8px;
  49. background-color: White;
  50. opacity: .92;
  51. /*width:280px;*/
  52. width: 450PX;
  53. height:135px;
  54. z-index:2;
  55. cursor:pointer;
  56. margin:25PX;
  57. float:left;
  58. position: relative;
  59.  
  60.  
  61. -moz-box-shadow: 3px 3px 3px #888;
  62. -webkit-box-shadow: 3px 3px 2px #888;
  63. box-shadow: 3px 3px 3px #888;
  64.  
  65. /*-moz-box-shadow: 0 0 2px #000;
  66. -webkit-box-shadow: 0 0 2px#000;
  67. box-shadow: 0 0 2px #000;*/
  68.  
  69. }
  70.  
  71. .tile-title
  72. {
  73. opacity: 1;
  74. font-family:Helvetica;
  75. font-weight:bold;
  76. font-size:24px;
  77. color:black;
  78. position:absolute;
  79. /*text-align:center;*/
  80. width:450px;
  81. height:30px;
  82. overflow:hidden;
  83.  
  84. /*border-bottom: 1px solid black;
  85. */
  86. -moz-box-shadow: 0px 5px 1px #888;
  87. -webkit-box-shadow: 0px 5px 1px #888;
  88. box-shadow: 0px 5px 1px #888;
  89.  
  90. }
  91.  
  92. .location
  93. {
  94. opacity: 1;
  95. font-family:Helvetica;
  96. font-size:17px;
  97. color:#black;
  98. position:absolute;
  99. left:20px;
  100. top: 77px;
  101. width:365px;
  102. }
  103.  
  104. .number
  105. {
  106. opacity: 1;
  107. font-size:16px;
  108. font-family:Helvetica;
  109. font-weight:bold;
  110. text-align:right;
  111. color:#black;
  112. text-align:right;
  113. position:absolute;
  114. left:260px;
  115. top:95px;
  116. width:30px;
  117. }
  118.  
  119. .date
  120. {
  121. opacity: 1;
  122. font-family:Helvetica;
  123. font-size:17px;
  124. color:#black;
  125. position:absolute;
  126. left:20px;
  127. top: 47px;
  128. width:195px;
  129. }
  130. .time
  131. {
  132. opacity: 1;
  133. font-family:Helvetica;
  134. font-size:17px;
  135. color: #black;
  136. position:absolute;
  137. left:205px;
  138. top:47px;
  139. width:195px;
  140. }
  141.  
  142. .tilePic1
  143. {
  144. margin-left: 15px;
  145. margin-top: 110px;
  146. /*margin-top: 35px;*/
  147. }
  148.  
  149. .tilePic2
  150. {
  151. margin-left: 50px;
  152. margin-top: 110px;
  153. /*margin-top: 35px;*/
  154. }
  155.  
  156. .tilePic3
  157. {
  158. margin-left: 55px;
  159. margin-top: 110px;
  160. /*margin-top: 35px;*/
  161. }
  162.  
  163. .numAttending
  164. {
  165. opacity: 1;
  166. font-family:Helvetica;
  167. font-size:14px;
  168. color:#black;
  169. position:absolute;
  170. left:40px;
  171. top: 110px;
  172. width:195px;
  173. }
  174.  
  175. .numComments
  176. {
  177. opacity: 1;
  178. font-family:Helvetica;
  179. font-size:14px;
  180. color:#black;
  181. position:absolute;
  182. left:115px;
  183. top: 110px;
  184. width:195px;
  185. }
  186.  
  187. .numViews
  188. {
  189. opacity: 1;
  190. font-family:Helvetica;
  191. font-size:14px;
  192. color:#black;
  193. position:absolute;
  194. left: 190px;
  195. top: 110px;
  196. width:195px;
  197. }
  198.  
  199.  
  200. /*Default Description Elements to not visible on load. may want to move this to javascript but so far $(".descriptionElements").css("opacity", "0.0"); has been unsuccessful
  201. (think it has to do with the class being an array of elements and not just a single element*/
  202. .descriptionElements
  203. {
  204. opacity:0;
  205. }
  206.  
  207. .description
  208. {
  209. text-align:center;
  210. color:#CCD8FF;
  211. font-family:Trebuchet MS;
  212. font-size:14px;
  213. position:absolute;
  214. height:130px;
  215. width:270px;
  216. left:5px;
  217. top:5px;
  218. max-height:130px;
  219. max-width:280px;
  220. }
  221.  
  222. .eventThumbnail
  223. {
  224. left: 350px;
  225. top: 45px;
  226. position: absolute;
  227. border: 1px solid black;
  228. }
  229.  
  230. .icon
  231. {
  232. position:absolute;
  233. left:0px;
  234. top:40px;
  235. height:0px;
  236. width:0px;
  237. padding:5px;
  238. }
  239.  
  240. .number
  241. {
  242. font-size:16px;
  243. font-family:Trebuchet MS;
  244. font-weight:bold;
  245. text-align:right;
  246. color:#CFDAFC;
  247. text-align:right;
  248. position:absolute;
  249. left:260px;
  250. top:125px;
  251. width:30px;
  252. }
  253.  
  254. #event-title
  255. {
  256. color:#EBECFF;
  257. font-size:20px;
  258. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement