style.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. /*--------------------------------------------------------------
  2. # Gobal for all pages
  3. --------------------------------------------------------------*/
  4. body {
  5. padding-top: 100px;
  6. }
  7. @media (max-width: 979px) {
  8. body {
  9. padding-top: 0px;
  10. }
  11. }
  12. /*--------------------------------------------------------------
  13. # Market.html Top photo
  14. --------------------------------------------------------------*/
  15. #market_top {
  16. width: 100%;
  17. height: 80vh;
  18. background: url("../templates/market_top.gif") top left;
  19. background-size: cover;
  20. position: relative;
  21. }
  22. #market_top:before {
  23. content: "";
  24. background: rgba(255, 255, 255, 0.408);
  25. position: absolute;
  26. bottom: 0;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. }
  31. #market_top .container {
  32. position: relative;
  33. }
  34. #market_top h1 {
  35. margin: 0;
  36. font-size: 48px;
  37. font-weight: 700;
  38. line-height: 56px;
  39. color: white;
  40. font-family: "Poppins", sans-serif;
  41. }
  42. #market_top h1 span {
  43. color: #7d2ae8;
  44. -webkit-text-stroke: 0.3px white;
  45. font-size: 60px;
  46. }
  47. #market_top h2{
  48. color: white;
  49. font-family: "Poppins", sans-serif;
  50. }
  51. @media (min-width: 1024px) {
  52. #market_top {
  53. background-attachment: fixed;
  54. }
  55. }
  56. @media (max-width: 768px) {
  57. #market_top {
  58. height: 100vh;
  59. }
  60. }
  61. .market_each_bid_image_size {
  62. width:250px;
  63. height:250px;
  64. }
  65. /*--------------------------------------------------------------
  66. # Navbar
  67. --------------------------------------------------------------*/
  68. .navbar-nav-right {
  69. top: 22px;
  70. position: absolute;
  71. right: 0px;
  72. list-style-type: none;
  73. }
  74. .navbar-nav-middle {
  75. position: absolute;
  76. right: 400px;
  77. list-style-type: none;
  78. }
  79. .a-font {
  80. font-size: 20px;
  81. font-weight:bold;
  82. background-color: #846add;;
  83. color: white;
  84. }
  85. .a-logout {
  86. font-size: 20px;
  87. font-weight:bold;
  88. background-color: #856add54;;
  89. color: white;
  90. }
  91. .navbar-nav > li{
  92. padding-left:30px;
  93. }
  94. body {
  95. font: 400 15px/1.8 "Lato", sans-serif;
  96. }
  97. .button-serach{
  98. right: 100px;
  99. }
  100. .navbar-colour{
  101. background-color: #8064a2bd
  102. }
  103. /*--------------------------------------------------------------
  104. # Market.html Current bid & Creator & Gril System
  105. --------------------------------------------------------------*/
  106. #market_item_name_left {
  107. font-size: 16px;
  108. color: black;
  109. left: 18px;
  110. position: relative;
  111. }
  112. #market_item_text_left {
  113. font-size: 14px;
  114. color: grey;
  115. left: 18px;
  116. position: relative;
  117. }
  118. #market_item_text_right {
  119. font-size: 14px;
  120. color: grey;
  121. position: absolute;
  122. right: 18px;
  123. list-style-type: none;
  124. }
  125. .grid-item {
  126. margin-right: 95px;
  127. }
  128. .price-span {
  129. color: #7d2ae8;
  130. font-weight:bold;
  131. font-size: 15px;
  132. }
  133. /*--------------------------------------------------------------
  134. # detail_art_for_market.html bid table
  135. --------------------------------------------------------------*/
  136. .body-column {
  137. font-family: 'Roboto', sans-serif;
  138. text-align: center;
  139. }
  140. .input-submit {
  141. margin-left: 236px;
  142. margin-top:-69px;
  143. -webkit-appearance: none;
  144. }
  145. /*--------------------------------------------------------------
  146. # create_art.html
  147. --------------------------------------------------------------*/
  148. .container-create_art {
  149. width: 100%;
  150. min-height: 100vh;
  151. display: flex;
  152. flex-wrap: wrap;
  153. justify-content: center;
  154. align-items: center;
  155. padding: 15px;
  156. background: #7c2ae8b7;
  157. }
  158. .wrap-create_art {
  159. width: 1163px;
  160. background: #fff;
  161. border-radius: 10px;
  162. overflow: hidden;
  163. display: flex;
  164. flex-wrap: wrap;
  165. justify-content: space-between;
  166. padding: 70px 50px 57px 118px;
  167. }
  168. .create_art-pic img {
  169. width: 480px;
  170. padding-top: 100px;
  171. }
  172. .contact100-form {
  173. width: 390px;
  174. }
  175. .create_art-form-title {
  176. display: block;
  177. font-size: 24px;
  178. color: #333333;
  179. line-height: 1.2;
  180. text-align: left;
  181. padding-bottom: 36px;
  182. }
  183. input.create_art-input {
  184. height: 50px;
  185. border-radius: 25px;
  186. padding: 0 30px 0 50px;
  187. }
  188. .description_size {
  189. min-height: 150px;
  190. border-radius: 25px;
  191. padding: 14px 30px;
  192. }
  193. .create_art-input-box {
  194. position: relative;
  195. width: 100%;
  196. z-index: 1;
  197. margin-bottom: 10px;
  198. }
  199. .create_art-input {
  200. display: block;
  201. width: 100%;
  202. background: #e6e6e6;
  203. font-family: Montserrat-Bold;
  204. font-size: 15px;
  205. line-height: 1.5;
  206. color: #666666;
  207. }
  208. .create_art-form-btn {
  209. width: 100%;
  210. height: 50px;
  211. border-radius: 25px;
  212. background: #846add;
  213. font-size: 20px;
  214. line-height: 1.5;
  215. color: #fff;
  216. display: -webkit-box;
  217. display: -webkit-flex;
  218. display: -moz-box;
  219. display: -ms-flexbox;
  220. display: flex;
  221. justify-content: center;
  222. align-items: center;
  223. padding: 0 25px;
  224. -webkit-transition: all 0.4s;
  225. -o-transition: all 0.4s;
  226. -moz-transition: all 0.4s;
  227. transition: all 0.4s;
  228. }
  229. .body-column-create_art {
  230. font-family: 'Roboto', sans-serif;
  231. text-align: center;
  232. }
  233. .upload_Create_art {
  234. position:transparent;
  235. }
  236. .upload_Create_art_position {
  237. margin-left:100px;
  238. }
  239. .hr_size{
  240. border: 2px solid rgb(177, 176, 176);
  241. width:327px;
  242. border-radius: 5px;
  243. }
  244. .Choose-Time-for-Auction-ends {
  245. height:47px;
  246. width:175px;
  247. }
  248. .Closing-date-input-size {
  249. height:47px;
  250. width:220px;
  251. }
  252. .tips_location {
  253. margin-left:25px;
  254. }
  255. .word_OR_location {
  256. margin-top: 10px;
  257. font-size: 20px;
  258. }
  259. /*--------------------------------------------------------------
  260. # profile.html
  261. --------------------------------------------------------------*/
  262. .input-UploadProfile-Browse {
  263. width: 80px;
  264. color:transparent;
  265. }
  266. .update_password-form-btn {
  267. background: #846add;
  268. line-height: 1.5;
  269. color: #fff;
  270. }
  271. .nav-tabs .nav-item .nav-link {
  272. background-color: white;
  273. color: #846add;
  274. font-weight:bold;
  275. }
  276. .nav-tabs .nav-item .nav-link.active {
  277. color: white;
  278. background: #846add;
  279. }
  280. .tab-content {
  281. border: 1px solid #dee2e6;
  282. border-top: transparent;
  283. padding: 15px;
  284. }
  285. .thead-colour {
  286. color: white;
  287. background: #846add;
  288. }
  289. .image_bid_item_size {
  290. width:200px;
  291. height:200px;
  292. }
  293. .user_profile_image_size {
  294. width:150px;
  295. }
  296. .change_password_location {
  297. position:relative;
  298. left:20px;
  299. }
  300. /*--------------------------------------------------------------
  301. # base.html
  302. --------------------------------------------------------------*/
  303. .flash_message_size{
  304. width: 300px;
  305. }
  306. .flash.message_z-index{
  307. z-index: 2;
  308. }
  309. /*--------------------------------------------------------------
  310. # all detail_*.html
  311. --------------------------------------------------------------*/
  312. .bidding_price_size {
  313. max-width: 15rem
  314. }
  315. /*--------------------------------------------------------------
  316. # login & Register .html
  317. --------------------------------------------------------------*/
  318. .login_Register_Bg_colour{
  319. border-radius: 1rem;
  320. background: #846add;
  321. }
  322. /*--------------------------------------------------------------
  323. # Register .html
  324. --------------------------------------------------------------*/
  325. .tips_8characters {
  326. color:white;
  327. }