File: composer.css

package info (click to toggle)
golang-github-smartystreets-goconvey 1.6.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,800 kB
  • sloc: makefile: 8
file content (65 lines) | stat: -rw-r--r-- 1,823 bytes parent folder | download | duplicates (4)
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
/* Eric Meyer's Reset CSS v2.0 */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

@font-face {
	font-family: 'Open Sans';
	src: local("Open Sans"), url("../fonts/Open_Sans/OpenSans-Regular.ttf");
}
@font-face {
	font-family: 'Oswald';
	src: local("Oswald"), url("../fonts/Oswald/Oswald-Regular.ttf");
}

body {
	font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 16px;
}

header {
	background: #2C3F49;
	padding: 10px;
}

.logo {
	font-family: Oswald, sans-serif;
	font-size: 24px;
	margin-right: 5px;
	color: #DDD;
}

.afterlogo {
	font-size: 12px;
	text-transform: uppercase;
	position: relative;
	top: -3px;
	color: #999;
}

#input,
#output {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	padding: 15px;
	height: 80%;
	float: left;
	overflow: auto;
}

#input {
	border: 0;
	font: 300 18px/1.5em 'Open Sans';
	resize: none;
	outline: none;
	width: 50%;
}

#output {
	width: 50%;
	display: inline-block;
	background: #F0F0F0;
	font: 14px/1.25em 'Menlo', 'Monaco', 'Courier New', monospace;
	border-left: 1px solid #CCC;
	white-space: pre-wrap;
}