forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_box_shadow.css
46 lines (45 loc) · 890 Bytes
/
test_box_shadow.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
.box {
width: 100px;
height: 80px;
margin: 10px;
box-sizing: border-box;
display: inline-block;
background-color: #eee;
border: 1px solid #f00;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.box-content {
background-color: #fff;
border: 1px solid #888;
}
.shadow-container {
padding: 0 0 30px 0;
}
.shadow-2 .box {
box-shadow: 15px 15px 8px rgba(0, 0, 0, 0.8);
}
.shadow-3 .box {
box-shadow: 30px 30px 8px rgba(0, 0, 0, 0.8);
}
.rounded.box {
border-radius: 20px;
}
.rounded-2.box {
border-radius: 40px;
}
.rounded-3.box {
border-top-left-radius: 40px;
border-top-right-radius: 30px;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 10px;
}
.rounded-4.box {
border-top-left-radius: 10px;
border-top-right-radius: 40px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 40px;
}
.square.box {
width: 80px;
height: 80px;
}