forked from TomographicImaging/HOW-history-of-tomography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (71 loc) · 1.48 KB
/
style.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
$widget-width: 200px;
$widget-height: 200px;
$widget-gutter: 0px;
$columns: 3;
* {
box-sizing: border-box;
}
.packery-drop-placeholder {
outline: 3px dashed hsla(0, 0%, 0%, 0.5);
outline-offset: -6px;
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
}
.oxy-card-title {
display:block;
height: 40px;
cursor: move;
span {
cursor: default;
display:inline-block;
}
}
.oxy-card-content {
height: $widget-height;
}
.collapsed .oxy-card-content {
display: none;
}
.grid {
width: ($widget-width * $columns + $widget-gutter * ($columns - 1));
}
.grid-item {
float: left;
width: $widget-width;
}
.grid-item.twox {
width: $widget-width * 2 + $widget-gutter;
}
.oxy-card .oxy-card-title {
border-bottom: 1px solid hsla(0, 0%, 63%, .2);
color: #00529b;
font-size: 18px;
font-size: 1.125rem;
font-weight: 800;
margin: 0;
padding: .625rem;
text-transform: uppercase;
}
.oxy-card .oxy-card-content {
padding: 10px;
}
/*****************/
.grid {
-webkit-transform-origin: top center;
transform-origin: top center;
transition: -webkit-transform .5s;
transition: transform .5s;
transition: transform .5s, -webkit-transform .5s;
}
.mdl-shadow--2dp {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14),
0 3px 1px -2px rgba(0, 0, 0, .2),
0 1px 5px 0 rgba(0, 0, 0, .12);
}
.demo--containment__container {
top: -2.4em;
height: 250px;
padding: 15px 2.5%;
border-radius: 10px;
border: 6px solid #FA0;
}