source: src/main/resources/static/css/fileUploadPreview.css@ 5577566

Last change on this file since 5577566 was 5577566, checked in by NikolaCenevski <cenevskinikola@…>, 3 years ago

prototip part 2

  • Property mode set to 100644
File size: 772 bytes
Line 
1#drop-region {
2 background-color: #fff;
3 border-radius:20px;
4 box-shadow:0 0 35px rgba(0,0,0,0.05);
5 padding:60px 40px;
6 text-align: center;
7 cursor:pointer;
8 transition:.3s;
9 margin-left: 10px;
10}
11#drop-region:hover {
12 box-shadow:0 0 45px rgba(0,0,0,0.1);
13}
14
15#image-preview {
16 margin-top:20px;
17}
18#image-preview .image-view {
19 display: inline-block;
20 position:relative;
21 margin-right: 13px;
22 margin-bottom: 13px;
23}
24#image-preview .image-view img {
25 max-width: 100px;
26 max-height: 100px;
27}
28#image-preview .overlay {
29 position: absolute;
30 width: 100%;
31 height: 100%;
32 top: 0;
33 right: 0;
34 z-index: 2;
35 background: rgba(255,255,255,0.5);
36}
37
38#left {
39 margin-left: 10px;
40}
41
42#right {
43 margin-left: 10px;
44}
Note: See TracBrowser for help on using the repository browser.