-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.css
118 lines (89 loc) · 2.18 KB
/
Dashboard.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#box{
/* border: 1px solid; */
text-align: center;
height: auto;
background-color: aqua;
border-radius: 10px;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
#midbox{
/* border: 1px solid; */
height: 400px;
display: flex;
flex-direction: row;
gap: 10px;
}
#midbox > div{
/* border: 1px solid; */
width: 500px;
text-align: center;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.inner1 > div{
/* border: 1px solid; */
height: 50px;
text-align: center;
background-color: orange;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
border-radius: 10px;
}
.inner2 > div{
/* border: 1px solid; */
height: 50px;
background-color: orange;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
border-radius: 10px;
}
.inner3 > div{
/* border: 1px solid; */
height: 50px;
text-align: center;
background-color: orange;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
border-radius: 10px;
}
footer {
background-color: #f1f1f1;
padding: 20px;
text-align: center;
border-radius: 10px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
position: relative;
}
.footer-links a, .footer-social a {
margin: 0 10px;
text-decoration: none;
color: #000;
}
.footer-social img {
width: 30px;
height: 30px;
}
@media (max-width: 768px) {
#box {
padding: 10px;
}
footer {
padding: 15px;
}
.footer-social img {
width: 25px;
height: 25px;
}
}
@media (max-width: 480px) {
.inner1 > div,
.inner2 > div,
.inner3 > div {
height: 40px;
}
.footer-links a,
.footer-social a {
margin: 0 5px;
}
#midbox{
display: flex;
flex-direction: row;
}
}