aboutsummaryrefslogtreecommitdiff
path: root/sources/plugins/widget/dev/assets/simplebox/contents.css
blob: ddf3675b2266c5b444f9ff77322072b6b7c2dd33 (plain) (blame)
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
.simplebox {
	padding: 8px;
	margin: 10px;
	background: #eee;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-shadow: 0 1px 1px #fff inset, 0 -1px 0px #ccc inset;
}
.simplebox-title, .simplebox-content {
	box-shadow: 0 1px 1px #ddd inset;
	border: 1px solid #cccccc;
	border-radius: 5px;
	background: #fff;
}
.simplebox-title {
	margin: 0 0 8px;
	padding: 5px 8px;
}
.simplebox-content {
	padding: 0 8px;
}
.simplebox-content::after {
	content: '';
	display: block;
	clear: both;
}
.simplebox.align-right {
	float: right;
}
.simplebox.align-left {
	float: left;
}
.simplebox.align-center {
	margin-left: auto;
	margin-right: auto;
}