aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/webapp/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/webapp/style.css')
-rw-r--r--language-web/src/main/webapp/style.css105
1 files changed, 105 insertions, 0 deletions
diff --git a/language-web/src/main/webapp/style.css b/language-web/src/main/webapp/style.css
new file mode 100644
index 00000000..9a89dd81
--- /dev/null
+++ b/language-web/src/main/webapp/style.css
@@ -0,0 +1,105 @@
1body {
2 width: 100%;
3 height: 100%;
4 overflow: hidden;
5 font: 16px Helvetica,sans-serif;
6}
7
8a {
9 color: #22a;
10 text-decoration: none;
11}
12
13a:hover {
14 text-decoration: underline;
15}
16
17.container {
18 display: block;
19 position: absolute;
20 top: 0;
21 bottom: 0;
22 left: 0;
23 right: 0;
24 margin: 24px 24px 36px 24px;
25}
26
27.header {
28 display: block;
29 position: absolute;
30 top: 0;
31 left: 0;
32 right: 0;
33 padding: 16px;
34 background: #dbdbdb;
35 border-radius: 16px;
36 color: #383838;
37}
38
39.header h1 {
40 font-size: 36px;
41 margin: 0;
42}
43
44.content {
45 display: block;
46 position: absolute;
47 top: 108px;
48 bottom: 0;
49 left: 0;
50 width: 50%;
51 box-shadow: 0 0 8px rgba(80, 10, 98, .25), 0 10px 24px rgba(80, 10, 98, .35);
52 border-radius: 16px;
53}
54
55.xtext-editor {
56 display: block;
57 position: absolute;
58 top: 16px;
59 bottom: 16px;
60 left: 16px;
61 right: 16px;
62 border: 1px solid #aaa;
63}
64
65.problem-class {
66 color: #005032;
67}
68
69.problem-abstract {
70 color: #8b8816;
71}
72
73.problem-enum {
74 color: #644632;
75}
76
77.problem-reference {
78 color: #0000c0;
79}
80
81.problem-containment {
82 font-weight: bold;
83}
84
85
86.CodeMirror .problem-node {
87 color: inherit;
88}
89
90.problem-enum-node {
91 color: #1a1a1a !important;
92 font-weight: bold;
93}
94
95.problem-new-node {
96 font-style: italic;
97}
98
99.problem-variable {
100 color: #6a3e3e;
101}
102
103.problem-singleton-variable {
104 opacity: 0.7;
105}