-
Notifications
You must be signed in to change notification settings - Fork 12
/
calc.css
77 lines (69 loc) · 1.03 KB
/
calc.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
body {
font-family: "Droid Sans Mono", Courier;
max-width: 700px;
margin: 0 auto;
}
p,
h1 {
text-align: center;
}
.left {
display: inline-block;
box-sizing: border-box;
width: 70%;
}
.right {
display: inline-block;
box-sizing: border-box;
width: 30%;
vertical-align: top;
}
#inputArea {
background-color: transparent;
overflow: hidden;
border: 2px solid #8bd;
resize: none;
}
#outputArea {
padding-left: 20px;
}
#outputArea li {
white-space: nowrap;
}
#footer {
clear: both;
}
.matchingArea {
font-family: "Droid Sans Mono", Courier;
font-size: 16px;
line-height: 22px;
padding: 10px;
margin: 0;
}
.mainContainer {
position: relative;
}
ul {
list-style-type: none;
}
ul.backgroundRuler {
position: absolute;
width: 100%;
background-color: #fff;
margin: 0;
z-index: -1;
}
.backgroundRuler li {
line-height: 21px;
border-bottom: 1px solid #cce;
margin: 0;
padding: 0;
}
#footer {
padding: 25px 0 15px 0;
line-height: 1.5;
}
.changed {
color: #f66;
text-shadow: 0 0 5px #ff8;
}