blob: 82a70dac7ec15d1a033a9636b5b31bb865a7b85c (
plain)
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
|
.titled-container {
margin: 5px;
width: 100%;
height: 100%;
padding-bottom: 30px;
}
.titled-container-boarders {
border: solid 1px $black;
-webkit-box-shadow: 3px 3px 10px DarkGrey;
-moz-box-shadow: 3px 3px 10px DarkGrey;
box-shadow: 3px 3px 10px DarkGrey;
}
.titled-container-header {
padding: 0px 5px;
font-weight: bold;
font-size: 17px;
min-height: 25px;
}
.header-title {
width: 100%;
}
.titled-container > .contents {
padding: 5px;
}
|