File: ubw-help.css

package info (click to toggle)
openboard 1.7.3%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 57,404 kB
  • sloc: cpp: 76,443; javascript: 10,089; xml: 234; ansic: 38; makefile: 23; sh: 8
file content (46 lines) | stat: -rw-r--r-- 1,042 bytes parent folder | download | duplicates (9)
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
html, body {
	margin:0;
	padding: 0;
	height: 100%;
	font-family: "helvetica neue";
	font-size: 14px;
	color: #666666;
}

#body {
	
}

#core {
	width: 100%;
	height: 100%;
	
	position: relative;
	
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, 0.65);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, 0.65);
	-ms-box-shadow: 0 1px 3px rgba(0,0,0, 0.65);
	box-shadow: 0 1px 3px rgba(0,0,0, 0.65);
	background-image: linear-gradient(top, white 0%, #CCC 100%);
	background-image: -o-linear-gradient(top, white 0%, #CCC 100%);
	background-image: -moz-linear-gradient(top, white 0%, #CCC 100%);
	background-image: -webkit-linear-gradient(top, white 0%, #CCC 100%);
	background-image: -ms-linear-gradient(top, white 0%, #CCC 100%);
	background-image: -webkit-gradient( linear, 50% top, 50% bottom, color-stop(0, white), color-stop(1, #CCC) );
}

#core .wrapper {
	width: 100%;
	height: 100%;
	
	overflow: auto;
}

#core .wrapper > div {
	padding: 10px 20px;
}