source: Git/target/classes/static/css/shared.css@ 3c0f9a9

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

Added genre liking, fixed counter, improved paging, improved searches

  • Property mode set to 100644
File size: 1.5 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}
72
73#paging-section{
74 width: 100%;
75 clear: both;
76 margin-bottom: 30px;
77}
78
79#inner-paging{
80 width: fit-content;
81 margin: auto;
82
83}
84
85#button-sub, #button-add{
86 width: 100px;
87}
88
89#pageInput{
90 font-size: 100%;
91 text-align: center;
92 width: 175px;
93 margin: auto;
94}
95
96#button-submit-page{
97 margin: auto;
98 text-align: center;
99 margin-top: 7px;
100 display: none;
101}
102
103.visibility{
104 transition: 200ms;
105 opacity: 0;
106}
Note: See TracBrowser for help on using the repository browser.