-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (95 loc) · 1.46 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body{
margin: 0;
padding: 0;
align-items: center;
}
#filepicker,#imageUpload{
display: none;
}
.container{
display: flex;
margin : 20px 50px 30px 50px;
justify-content: space-around;
}
#loading {
position: fixed;
z-index: 999;
height: 100%;
width: 100%;
overflow: visible;
margin: auto;
top: 50%;
left: 40%;
bottom: 0%;
right: 0%;
}
img{
border-radius: 10px;
height: 300px;
width: 250px;
opacity: 0.1;
}
#myList{
padding-left: 0px;
list-style: none;
}
.div1{
background-color: rgba(97,87,123,0.6);
text-align: center;
height: 300px;
width: 450px;
border-radius: 10px;
border: 1px solid black;
}
.btn{
height: 40px;
width: 120px;
border-radius: 10px;
box-sizing: border-box;
margin: 15px;
background-color: rgba(64, 206, 12,0.6);
border: 1px solid rgba(64, 206, 12,0.8);
}
.btn:focus{
outline: 0;
}
.btn:hover{
height: 40px;
width: 120px;
border-radius: 10px;
box-sizing: border-box;
margin: 15px;
background-color: rgba(255, 255, 255,1);
border: 1px solid rgba(64, 206, 12,0.8);
cursor: pointer;
}
.image, .folder{
border-radius: 10px;
text-align: center;
height: 325px;
width: 450px;
padding: 20px;
}
#msgfaces{
border: 1px solid black;
border-radius: 10px;
height: 225px;
width:450px;
margin: auto;
text-align: center;
}
.title{
font-size: 40px;
margin:auto;
letter-spacing: 3px;
}
#fade-wrapper {
position:absolute;
background:#000;
opacity:.8;
left:0;
right:0;
top:0;
bottom:0;
z-index:1
}