-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboardStyles.css
More file actions
118 lines (114 loc) · 2.39 KB
/
dashboardStyles.css
File metadata and controls
118 lines (114 loc) · 2.39 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#grid {
background: linear-gradient(#e2e2e2,white);
margin: auto;
width: 50%;
height: 80%;
min-width: 427px;
min-height: 400px;
border-radius: 20px;
border-top:20px;
box-shadow: 3px 3px 5px rgba(100,100,100,0.5);
transform: translate(-50%, -50%);
top:50%;
left: 50%;
position:fixed;
}
.grid-wrap{
top:50%;
left:50%;
display:block;
align-items: center;
transform:translate(-50%, -50%);
position:relative;
}
.grid-rows{
width:96%;
height:33%;
display:flex;
align-items: center;
align-self: center;
transform:translateX(2%);
left:50%;
}
.grid-element{
background:#e3e3e3;
margin:auto;
width:28%; /*30% of the width of the row*/
height:85%;
border-radius: 20px;
padding: 0px 10px 10px 10px;
box-shadow: 3px 3px 5px rgba(100,100,100,0.5);
text-align: center;
}
#gridimages{
margin:auto;
width:auto;
height:auto;
max-width: 100%;
max-height: 80%;
border-radius: 20px;
padding-top: 10px;
}
#statement {
margin:auto;
line-height: 20px;
text-align:center;
}
/*------------------------------------*\
Image Wrapper
\*------------------------------------*/
.box-wrap {
margin: 25px 0 0 0;
position: absolute;
left: 0;
right: 0;
width: 100%;
}
.box {
border-radius: 5px;
width: 30%;
border: solid 1px #CCC;
float: left;
padding: 5px;
margin: 1%;
}
.box:hover {
background-color: #787878;
-webkit-transition: border 500ms;
-moz-transition: border 500ms;
-o-transition: border 500ms;
transition: border 500ms;
-webkit-transition: background-color 500ms;
-moz-transition: background-color 500ms;
-o-transition: background-color 500ms;
transition: background-color 500ms;
}
.box img {
background: rgba(0,0,0,0.5);
color: white;
cursor: pointer;
border-radius: 5px;
display: block;
margin: 0 0 5px 0;
width: 100%;
}
.box button {
border-radius: 5px;
background: #FFF;
border: solid 1px #CCC;
height: 35px;
text-align: center;
width: 100px;
}
.box button:hover {
border: solid 2px #DDD;
background-color: #DDD;
-webkit-transition: border 500ms;
-moz-transition: border 500ms;
-o-transition: border 500ms;
transition: border 500ms;
-webkit-transition: background-color 500ms;
-moz-transition: background-color 500ms;
-o-transition: background-color 500ms;
transition: background-color 500ms;
}