summaryrefslogtreecommitdiff
path: root/testsuite/reftests/box-shadow-spec-inset.css
blob: 9bf2cf0d06b9459bfd2e6546ad804fc288525804 (plain)
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
@import "reset-to-defaults.css";

.row1, .row2, .row3 {
  /*border:5px solid blue;*/
  border-width: 5px;
  border-style: solid;
  border-color: blue;
  background-color:orange;
}

.column1 {
  /* border-radius: 20px; */
}

.column2 {
  border-radius: 0;
}

.row2 {
  box-shadow:
    rgba(0,0,0,1)
    15px 15px
    inset;
}

.row3 {
  box-shadow:
    rgba(0,0,0,1)
    15px 15px 0
    10px /*spread*/
    inset;
}

.reference-border {
  border-width: 5px;
  border-style: solid;
  border-color: blue;
}

.reference-background {
  background-color: orange;
}

.reference-shadow {
  background-color: rgba(0,0,0,1);
}

/*
.reference-padding-radius {
  border-radius: 15px
}

.reference-radii1 {
  border-radius: 15px 0 10px;
}

.reference-radii2 {
  border-radius: 5px 0 10px;
}
*/