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
|
GtkButton {
engine: none;
border-radius: 0;
background-image: none;
border-image: none;
border-style: none;
background-color: rgba(0, 0, 0, 0);
border-width: 0;
}
.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;
}
*/
|