Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.39 KB | None | 0 0
  1. body {
  2. margin: 0px;
  3. font-family: 'Roboto', sans-serif;
  4. color: #333333;
  5. }
  6.  
  7. body.small {
  8. background-color: rgb(255, 171, 74);
  9. }
  10.  
  11. * {
  12. box-sizing: border-box;
  13. -moz-box-sizing: border-box;
  14. -webkit-box-sizing: border-box;
  15. margin: 0;
  16. padding: 0;
  17. }
  18.  
  19. a {
  20. color: inherit;
  21. text-decoration: none;
  22. }
  23.  
  24. a:hover {
  25. color: #ff8a00;
  26. }
  27.  
  28. h1 {
  29. text-align: center;
  30. margin-bottom: 30px;
  31. }
  32.  
  33. h2{
  34. text-align: center;
  35. margin-bottom: 10px;
  36. font-weight: 300;
  37. }
  38.  
  39. h3{
  40. margin-top: 20px;
  41. }
  42.  
  43. h4{
  44. font-size:40px;
  45. font-weight: 100;
  46. text-align:center;
  47. margin:200px 0;
  48. }
  49.  
  50. h5{
  51. margin: 50px 0 20px 0;
  52. text-align:center;
  53. font-weight:300;
  54. font-size:15px;
  55. }
  56.  
  57. dl dt{
  58. font-weight:600;
  59. color: #000000;
  60. }
  61.  
  62. .reg-log .circle {
  63. width: 100px;
  64. height: 100px;
  65. border-radius: 50px;
  66. background-color: rgb(255, 171, 74);
  67. position: absolute;
  68. top: -50px;
  69. left: 150px;
  70. }
  71.  
  72. .reg-log {
  73. width: 400px;
  74. background-color: #ffffff;
  75. margin: 10% auto;
  76. padding: 75px 50px 50px 50px;
  77. position: relative;
  78. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  79. }
  80.  
  81. .reg-log p {
  82. font-size: 12px;
  83. font-weight: 400;
  84. margin: 20px 0 0 0;
  85. text-align: center;
  86. }
  87.  
  88. input, select{
  89. height: 34px;
  90. padding: 6px 12px;
  91. font-size: 12px;
  92. width: 100%;
  93. margin-bottom: 15px;
  94. background-color: #ffffff;
  95. border: #ccc 1px solid;
  96. border-radius: 0px;
  97. }
  98.  
  99. input.error{
  100. border: red 1px solid;
  101. }
  102.  
  103. button[type="submit"] {
  104. background-color: #ff8a00;
  105. border: 0px;
  106. height: 34px;
  107. padding: 6px 12px;
  108. font-size: 14px;
  109. font-weight: 400;
  110. vertical-align: middle;
  111. width: 100%;
  112. color: #ffffff;
  113. cursor: pointer;
  114. }
  115.  
  116. a.button {
  117. display: block;
  118. background-color: #ff8a00;
  119. border: 0px;
  120. height: 34px;
  121. padding: 9px 12px;
  122. font-size: 14px;
  123. font-weight: 400;
  124. vertical-align: middle;
  125. text-align: center;
  126. width: 100%;
  127. color: #ffffff;
  128. cursor: pointer;
  129. }
  130.  
  131. header {
  132. border-top: #ff8a00 5px solid;
  133. background-color: #ffffff;
  134. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  135. margin-bottom: 50px;
  136. }
  137.  
  138. header div.logo {
  139. text-align: center;
  140. }
  141.  
  142. header div.logo img {
  143. height: 80px;
  144. width: auto;
  145. margin: 10px 0 0 0;
  146. }
  147.  
  148. header div.menu {
  149. text-align: center;
  150. padding: 10px 0 20px 0;
  151. font-weight: 500;
  152. font-size: 15px;
  153. }
  154.  
  155. header div.menu a {
  156. margin: 0 10px;
  157. }
  158.  
  159. header div.login {
  160. text-align: center;
  161. padding: 0 0 20px 0;
  162. font-weight: 300;
  163. font-size: 13px;
  164. }
  165.  
  166. footer {
  167. border-bottom: #ff8a00 5px solid;
  168. background-color: #ffffff;
  169. box-shadow: 1px 0 3px rgba(0, 0, 0, 0.12), 1px 0 2px rgba(0, 0, 0, 0.24);
  170. height: 50px;
  171. margin-top: 100px;
  172. text-align: center;
  173. line-height: 45px;
  174. font-weight: 200;
  175. }
  176.  
  177. .highlight {
  178. height:500px;
  179. width:100%;
  180. }
  181.  
  182. .highlight > div {
  183.  
  184. }
  185.  
  186. .highlight .full, .highlight .half{
  187. background-position: center center;
  188. background-repeat: no-repeat;
  189. -webkit-background-size: cover;
  190. -moz-background-size: cover;
  191. -o-background-size: cover;
  192. background-size: cover;
  193. }
  194.  
  195. .highlight .full:hover .title{
  196. background-color: #dfdfdf;
  197. }
  198.  
  199. .highlight .full{
  200. height:100%;
  201. position:relative;
  202. }
  203.  
  204. .highlight .half{
  205. height:50%;
  206. position:relative;
  207. }
  208.  
  209. .highlight .title{
  210. position:absolute;
  211. left:0px;
  212. right:0px;
  213. bottom:0px;
  214. height:50px;
  215. background-color: #ececec;
  216. line-height: 50px;
  217. text-align:center;
  218. font-weight: 300;
  219. font-size:13px;
  220. }
  221.  
  222. .browse .filter {
  223. box-shadow: 1px 0 2px rgba(0, 0, 0, 0.24);
  224. padding:0 10px 10px 10px;
  225. }
  226.  
  227. .browse .filter li{
  228. height:40px;
  229. line-height: 40px;
  230. text-align: center;
  231. }
  232.  
  233. .browse .filter li:hover{
  234. background-color: #dfdfdf;
  235. }
  236.  
  237. .browse .filter li.selected{
  238. background-color: #FFAB4A;
  239. color:#ffffff;
  240. }
  241.  
  242. .browse .movie{
  243. height:300px;
  244. position:relative;
  245. margin: 0px 0px 10px 10px;
  246. background-position: center center;
  247. background-repeat: no-repeat;
  248. -webkit-background-size: cover;
  249. -moz-background-size: cover;
  250. -o-background-size: cover;
  251. background-size: cover;
  252. }
  253.  
  254. .browse .movie:hover{
  255. -webkit-transform: scale(1.02);
  256. -moz-transform: scale(1.02);
  257. -o-transform: scale(1.02);
  258. transform: scale(1.02);
  259. }
  260.  
  261. .browse .movie .title{
  262. position:absolute;
  263. bottom: 0px;
  264. left: 0px;
  265. right: 0px;
  266. height: 50px;
  267. line-height: 50px;
  268. background-color:rgba(0, 0, 0, 0.8);
  269. padding: 0 10px;
  270. color:#ffffff;
  271. }
  272.  
  273. .padding{
  274. padding:30px;
  275. }
  276.  
  277. .error div{
  278. background-color: rgba(255, 0, 0, 0.42);
  279. padding:10px;
  280. color:#ffffff;
  281. }
  282.  
  283. .browse .movie .price{
  284. position:absolute;
  285. top: 20px;
  286. left: 20px;
  287. right: 0px;
  288. line-height: 50px;
  289. border-radius: 25px;
  290. color:#ffffff;
  291. -webkit-transform: rotate(-30deg);
  292. -moz-transform: rotate(-30deg);
  293. -ms-transform: rotate(-30deg);
  294. -o-transform: rotate(-30deg);
  295. font-size:14px;
  296. }
  297.  
  298. .movie .cover{
  299. height:400px;
  300. }
  301.  
  302. .movie .cover img{
  303. max-height: 100%;
  304. height: auto;
  305. max-widows: 100%;
  306. }
  307.  
  308. .movie .addBasket{
  309. margin:40px auto;
  310. max-width:300px;
  311. width:100%;
  312. background-color: #FFAB4A;
  313. padding:20px;
  314. border-radius: 5px;
  315. }
  316.  
  317. .actor{
  318. height:200px;
  319. position:relative;
  320. margin: 0px 0 0 0px;
  321. background-position: center center;
  322. background-repeat: no-repeat;
  323. -webkit-background-size: cover;
  324. -moz-background-size: cover;
  325. -o-background-size: cover;
  326. background-size: cover;
  327. }
  328.  
  329. .actor .title{
  330. position:absolute;
  331. bottom: 0px;
  332. left: 0px;
  333. right: 0px;
  334. background-color:rgba(0, 0, 0, 0.8);
  335. padding: 5px 5px;
  336. color:#ffffff;
  337. text-align:center;
  338. }
  339.  
  340. .actor .title p.name, .actor .title p.role{
  341. font-weight: 400;
  342. font-size:14px;
  343. }
  344.  
  345. .actor .title p{
  346. font-weight: 200;
  347. font-size:12px;
  348. }
  349.  
  350. table.basket{
  351. width:100%;
  352. border-collapse: collapse;
  353. }
  354.  
  355. table.basket thead{
  356. font-weight: 800;
  357. }
  358.  
  359. table.basket tbody td{
  360. border-top:1px solid #ff8a00;
  361. }
  362.  
  363. table.basket td.right{
  364. text-align: right;
  365. }
  366.  
  367. table.basket td{
  368. padding:20px;
  369. white-space: nowrap;
  370. }
  371.  
  372. table.basket .title{
  373. width:100%;
  374. }
  375.  
  376. table.basket img{
  377. height:100px;
  378. width:auto;
  379. }
  380.  
  381. table.basket tfoot .right{
  382. border-top:3px double #ff8a00;
  383. }
  384.  
  385. @media only screen and (min-width: 640px) {
  386. header div.login {
  387. text-align: right;
  388. padding: 20px 20px 20px 20px;
  389. }
  390.  
  391. header div.menu {
  392. text-align: left;
  393. padding: 20px 20px 20px 10px;
  394. }
  395. }
  396.  
  397. @media only screen and (min-width: 1024px) {
  398. header div.logo {
  399. text-align: left;
  400. padding: 8px 0 0 20px;
  401. }
  402.  
  403. header div.menu {
  404. text-align: center;
  405. height: 91px;
  406. padding: 35px 20px 0 10px;
  407. }
  408.  
  409. header div.login {
  410. height: 91px;
  411. padding: 35px 20px 0 10px;
  412. }
  413. }
  414.  
  415. /* RESPONSIVE GRID */
  416.  
  417. .container {
  418. max-width: 1200px;
  419. margin: 0 auto;
  420. }
  421.  
  422. .container-fluid {
  423. width: 100%;
  424. margin: 0 auto;
  425. }
  426.  
  427. .row {
  428. width: 100%;
  429. overflow: hidden;
  430. *zoom: 1;
  431. }
  432.  
  433. .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-9, .col-s-12,
  434. .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-9, .col-m-12,
  435. .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-8, .col-l-9, .col-l-12 {
  436. float: left;
  437. position: relative;
  438. min-height: 1px;
  439. }
  440.  
  441. .col-s-3 {
  442. width: 25%;
  443. }
  444.  
  445. .col-s-4 {
  446. width: 33.33333%;
  447. }
  448.  
  449. .col-s-5 {
  450. width: 41.66666%;
  451. }
  452.  
  453. .col-s-6 {
  454. width: 50%;
  455. }
  456.  
  457. .col-s-8 {
  458. width: 66.66666%;
  459. }
  460.  
  461. .col-s-9 {
  462. width: 75%;
  463. }
  464.  
  465. .col-s-12 {
  466. width: 100%;
  467. }
  468.  
  469. @media only screen and (min-width: 640px) {
  470. .col-m-3 {
  471. width: 25%;
  472. }
  473.  
  474. .col-m-4 {
  475. width: 33.33333%;
  476. }
  477.  
  478. .col-m-5 {
  479. width: 41.66666%;
  480. }
  481.  
  482. .col-m-6 {
  483. width: 50%;
  484. }
  485.  
  486. .col-m-8 {
  487. width: 66.66666%;
  488. }
  489.  
  490. .col-m-9 {
  491. width: 75%;
  492. }
  493.  
  494. .col-m-12 {
  495. width: 100%;
  496. }
  497. }
  498.  
  499. @media only screen and (min-width: 1024px) {
  500. .col-l-2 {
  501. width: 16.66666%;
  502. }
  503.  
  504. .col-l-3 {
  505. width: 25%;
  506. }
  507.  
  508. .col-l-4 {
  509. width: 33.33333%;
  510. }
  511.  
  512. .col-l-5 {
  513. width: 41.66666%;
  514. }
  515.  
  516. .col-l-6 {
  517. width: 50%;
  518. }
  519.  
  520. .col-l-8 {
  521. width: 66.66666%;
  522. }
  523.  
  524. .col-l-9 {
  525. width: 75%;
  526. }
  527.  
  528. .col-l-12 {
  529. width: 100%;
  530. }
  531. }
  532.  
  533. #burst-12 {
  534. background: red;
  535. width: 50px;
  536. height: 50px;
  537. position: relative;
  538. text-align: center;
  539. }
  540. #burst-12:before, #burst-12:after {
  541. content: "";
  542. position: absolute;
  543. top: 0;
  544. left: 0;
  545. height: 50px;
  546. width: 50px;
  547. background: red;
  548. }
  549. #burst-12:before {
  550. -webkit-transform: rotate(30deg);
  551. -moz-transform: rotate(30deg);
  552. -ms-transform: rotate(30deg);
  553. -o-transform: rotate(30deg);
  554. }
  555. #burst-12:after {
  556. -webkit-transform: rotate(60deg);
  557. -moz-transform: rotate(60deg);
  558. -ms-transform: rotate(60deg);
  559. -o-transform: rotate(60deg);
  560. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement