source: Git/src/main/resources/static/css/shared.css@ 2efe93e

main
Last change on this file since 2efe93e was 2efe93e, checked in by Petar Partaloski <ppartaloski@…>, 2 years ago

Improved Front-End, added card view of movies

  • Property mode set to 100644
File size: 1.1 KB
Line 
1.col{
2 max-width: 5vw;
3}
4
5.row{
6 height: 300px;
7 margin-bottom: 15px;
8}
9
10.row div{
11 height: 100%;
12}
13
14.row div div{
15 height: 100%;
16}
17
18.card{
19 background-size: 100vh auto;
20 float:left;
21 margin: 7px;
22 border-radius: 10px;
23 padding: 20px;
24 color: white;
25 -webkit-text-stroke-width: 1px !important;
26 -webkit-text-stroke-color: black !important;
27 width: 90%;
28 height: 90%;
29 box-shadow: 4px 4px 4px rgba(128,128,128,1);
30}
31
32.card a h3{
33 -webkit-text-stroke-width: 1px;
34 -webkit-text-stroke-color: black;
35 color:white;
36 transition: 100ms;
37}
38
39.card:hover a h3{
40 transition: 400ms;
41 color:black;
42 -webkit-text-stroke-color: white;
43}
44
45.title{
46 text-align: center;
47 background-color: rgba(0,0,0,0.25);
48 border-radius: 10px 10px 0px 0px;
49 padding: 10px;
50}
51
52.bottom{
53 position: absolute;
54 top: 80%;
55 margin:auto;
56 width: 100%;
57 left: 0%;
58 border-radius: 0px;
59 text-align: center;
60 background-color: rgba(0,0,0,0.25);
61}
62
63
64.bottom-heart{
65 top: 60%;
66 left: auto;
67 position: absolute;
68 margin: auto;
69 width: 20%;
70 text-align: center;
71}
Note: See TracBrowser for help on using the repository browser.