-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (80 loc) · 1.67 KB
/
style.css
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
body {
color: #212121;
font-family: "Helvetica Neue", "Calibri Light", Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
letter-spacing: 0.02em;
background: #ceeef0;
font-size: 16px;
}
body.logged-in {
padding-top: 60px;
}
.ui.top.menu .item img {
border-radius: 4px;
}
.small {
font-size: 14px;
}
#header-graphic {
max-width: 700px;
margin-top: -60px;
margin-bottom: -80px;
z-index: -1000;
position: relative;
}
#header-graphic img {
max-width: 700px;
width: 100%;
}
.single-column {
margin: 0 auto;
max-width: 700px;
}
section.content {
padding: 10px;
border-radius: 4px;
border: 1px #abcce9 solid;
background: #fff;
margin-bottom: 12px;
}
section.content h4 {
margin: 0;
margin-top: 1em;
}
@media(max-width: 616px) {
section.content {
margin-left: 8px;
margin-right: 8px;
}
}
section.content textarea {
border: 1px #abcce9 solid;
border-radius: 4px;
-webkit-box-shadow: inset 0px 0px 6px 2px #e0edf9;
-moz-box-shadow: inset 0px 0px 6px 2px #e0edf9;
box-shadow: inset 0px 0px 6px 2px #e0edf9;
min-height: 200px;
width:100%;
}
h1{text-align:center;}
.button{width:100%;}
section.result{margin-top:10px; border:1px solid black;}
section.warn{background-color:#ffc;}
section.warn:before{content:'Warning: '; font-weight:bold;}
section.error{background-color:#fcc;}
section.error:before{content:'Error: '; font-weight:bold;}
section.success{background-color:#cfc;}
.result .errorline{
display:none;
font-size:14px;
}
.result .expander-label{
float:right;
}
.result .expander-check{
display:none
}
.result .expander-check:checked ~ .errorline{
display:block;
}