source: CSS/Cart.css

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 6 days ago

Upload project files

  • Property mode set to 100644
File size: 3.6 KB
Line 
1*{
2 margin: 0;
3 padding: 0;
4 box-sizing: border-box;
5 scroll-behavior: smooth;
6 font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
7 list-style: none;
8 text-decoration: none;
9}
10
11body {
12 color: #000;
13 overflow-x: hidden;
14 height: 100%;
15 background-color: #fff;
16 background-repeat: no-repeat;
17}
18
19.plus-minus {
20 position: relative;
21}
22
23.plus {
24 position: absolute;
25 top: -4px;
26 left: 2px;
27 cursor: pointer;
28}
29
30.minus {
31 position: absolute;
32 top: 8px;
33 left: 5px;
34 cursor: pointer;
35}
36
37.vsm-text:hover {
38 color: #FF5252;
39}
40
41.book, .book-img {
42 width: 120px;
43 height: 180px;
44 border-radius: 5px;
45}
46
47.book {
48 margin: 20px 15px 5px 15px;
49}
50
51.border-top {
52 border-top: 1px solid #EEEEEE !important;
53 margin-top: 20px;
54 padding-top: 15px;
55}
56
57.card {
58 margin: 40px 0px;
59 padding: 40px 50px;
60 border-radius: 20px;
61 border: none;
62 box-shadow: 1px 5px 10px 1px rgba(0,0,0,0.2);
63}
64
65input, textarea {
66 background-color: #F3E5F5;
67 padding: 8px 15px 8px 15px;
68 width: 100%;
69 border-radius: 5px !important;
70 box-sizing: border-box;
71 border: 1px solid #F3E5F5;
72 font-size: 15px !important;
73 color: #000;
74 font-weight: 300;
75}
76
77input:focus, textarea:focus {
78 -moz-box-shadow: none !important;
79 -webkit-box-shadow: none !important;
80 box-shadow: none !important;
81 border: 1px solid #9FA8DA;
82 outline-width: 0;
83 font-weight: 400;
84}
85
86button:focus {
87 -moz-box-shadow: none !important;
88 -webkit-box-shadow: none !important;
89 box-shadow: none !important;
90 outline-width: 0;
91}
92
93.pay {
94 width: 80px;
95 height: 40px;
96 border-radius: 5px;
97 border: 1px solid #673AB7;
98 margin: 10px 20px 10px 0px;
99 cursor: pointer;
100 box-shadow: 1px 5px 10px 1px rgba(0,0,0,0.2);
101}
102
103.gray {
104 -webkit-filter: grayscale(100%);
105 -moz-filter: grayscale(100%);
106 -o-filter: grayscale(100%);
107 -ms-filter: grayscale(100%);
108 filter: grayscale(100%);
109 color: #E0E0E0;
110}
111
112.gray .pay {
113 box-shadow: none;
114}
115
116#tax {
117 border-top: 1px lightgray solid;
118 margin-top: 10px;
119 padding-top: 10px;
120}
121
122.btn-blue {
123 border: none;
124 border-radius: 10px;
125 background-color: #17696a;
126 color: #fff;
127 padding: 8px 15px;
128 margin: 20px 0px;
129 cursor: pointer;
130}
131
132.btn-blue:hover {
133 background-color: #ff4242;
134 color: #fff;
135}
136
137#checkout {
138 float: left;
139}
140
141#check-amt {
142 float: right;
143}
144
145@media screen and (max-width: 768px) {
146 .book, .book-img {
147 width: 100px;
148 height: 150px;
149 }
150
151 .card {
152 padding-left: 15px;
153 padding-right: 15px;
154 }
155
156 .mob-text {
157 font-size: 13px;
158 }
159
160 .pad-left {
161 padding-left: 20px;
162 }
163}
164
165
166/*===============================*/
167
168.header-class{
169 position: fixed;
170 width: 100%;
171 top: 0;
172 right: 0;
173 z-index: 1000;
174 display: flex;
175 align-items: center;
176 justify-content: space-between;
177 padding: 20px 10%;
178 background-color: white;
179}
180
181
182.dropdown-menu-mine {
183 max-height: 0;
184 overflow: hidden;
185 transition: max-height 4.s ease-out;
186 position: absolute;
187 background-color: white;
188}
189
190.dropdown-list-mine{
191 cursor: pointer;
192}
193
194.dropdown-menu-mine li {
195 padding: 10px 20px 10px 20px;
196}
197
198.dropdown-menu-mine li:hover {
199 color: turquoise;
200 background-color: rgb(251, 251, 251);
201}
202
203.dropdown-list:hover .dropdown-menu-mine{
204 max-height: 1000px;
205 transition: max-height 0.8s ease-out;
206}
207
208section{
209 padding: 10% 10%;
210}
211
212input[type=submit] {
213 width: 68px;
214 height: 22px;
215 box-sizing: content-box;
216 color: white;
217}
Note: See TracBrowser for help on using the repository browser.