tests.css
1.14 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
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  font-family: sans-serif;
}
.container {
  background: #EEE;
  width: 180px;
  margin-bottom: 20px;
  position: relative;
}
.container:after {
  content: '';
  display: block;
  clear: both;
}
.item {
  width:  60px;
  height: 30px;
  float: left;
  border: 1px solid;
  background: #3BF;
}
.item.w2 { width: 120px; }
.item.w3 { width: 180px; }
.item.h2 { height:  50px; }
.item.h3 { height:  70px; }
.item.h4 { height:  90px; }
.item.h5 { height: 110px; }
/* ---- stamp ---- */
.stamp {
  background: red;
  opacity: 0.75;
  position: absolute;
  border: 1px solid;
}
.has-stamp {
  position: relative;
}
/* ---- get segment size ---- */
#get-segment-size .grid-sizer {
  /* 57 outer width */
  width: 52px;
  margin-right: 5px;
 /* 47 outer height */
  height: 40px;
  margin-bottom: 7px;
}
#masonry-measure-columns .grid-sizer {
  width: 70px;
}
/* ---- masonry stamp ---- */
#masonry-stamp .stamp1 {
  width: 80px;
  height: 30px;
  right: 25px;
  top: 15px;
}
/* ---- fit rows ---- */
#fitrows-gutter .gutter-sizer {
  width: 10%;
}