aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/css/index.scss
blob: e788bbd15c25547500b3fb28e1d3dccd3c67ccb9 (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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import 'codemirror/lib/codemirror';
@import 'codemirror/addon/hint/show-hint';

@import 'xtext/xtext-codemirror';

body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	font: 16px Helvetica,sans-serif;
}

a {
	color: #22a;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 24px 24px 36px 24px;
}

.header {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: #dbdbdb;
	border-radius: 16px;
	color: #383838;
}

.header h1 {
  font-size: 36px;
  margin: 0;
}

.content {
	display: block;
	position: absolute;
	top: 108px;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 8px rgba(80, 10, 98, .25), 0 10px 24px rgba(80, 10, 98, .35);
	border-radius: 16px;
}

.xtext-editor {
	display: block;
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 16px;
	right: 16px;
	border: 1px solid #999;
}

.problem-class {
	color: #005032;
}

.problem-abstract {
	color: #8b8816;
}

.problem-enum {
	color: #644632;
}

.problem-reference {
	color: #0000c0;
}

.problem-containment {
	font-weight: bold;
}

.CodeMirror .cm-quoted-name, .problem-enum-node {
	color: #1a1a1a !important;
	font-weight: bold;
}

.problem-new-node {
	font-style: italic;
}

.problem-variable {
	color: #6a3e3e;
}

.problem-singleton-variable {
	color: #a1706f;
}