-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
60 lines (49 loc) · 1.08 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
/*
Bootstrap (minified): https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css
*/
body { background-color: LightCyan; }
img { max-width: 100%; }
.container { max-width: 970px;}
.panel {
margin: 50px auto;
width: 500px;
}
.form-control { margin-bottom: 15px; }
.products-form .btn-update,
.products-form.is-updating .btn-create {
display: none;
}
.products-form .btn-create,
.products-form.is-updating .btn-update {
display: block;
}
.products-form .btn-block+.btn-block { margin-top: 0; }
.thumbnail {
margin-bottom: 25px;
padding: 0;
}
.thumbnail h4 {
overflow: hidden;
margin: 0 0 10px;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 1.2;
}
.thumbnail:hover .buttons-edit { visibility: visible; }
.thumbnail img {
display: block;
margin: 0 auto;
height: 200px;
border-radius: 4px 4px 0 0;
}
.buttons-edit {
position: absolute;
top: 10px;
right: 25px;
visibility: hidden;
}
.alert-info {
font-size: 2em;
text-align: center;
}
.products-template { display: none; }