-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (83 loc) · 2.03 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
93
94
95
96
.container {
/* position: absolute; */
width: 1270px;
min-width: 1270px;
overflow: scroll;
}
.col1 {
width: 384px;
float: left;
}
.col2 {
width: 870px;
float: right;
padding-left: 10px;
}
.capital div *, .fixed-costs div *, .tax div *, .variable-costs section div.projection-wrapper div * {
display: inline;
}
.capital div input, .fixed-costs div input, .tax div input, .variable-costs div.projection-wrapper div input {
float: right;
}
footer {
clear: both;
margin-top: 20px;
}
form div, h2, p, .submit {
margin-top: 10px;
margin-left: 10px;
}
input {
display: block;
padding: 5px;
}
input.currency {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px'><text x='2' y='16' fill='gray' font-size='12'>$</text></svg>");
padding-bottom: 5px;
padding-top: 5px;
padding-left: 15px;
padding-right: 5px;
}
input.number {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px'><text x='2' y='16' fill='gray' font-size='12'>#</text></svg>");
padding-bottom: 5px;
padding-top: 5px;
padding-left: 15px;
padding-right: 5px;
}
input.percent {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px'><text x='2' y='16' fill='gray' font-size='12'>%</text></svg>");
padding-bottom: 5px;
padding-top: 5px;
padding-left: 15px;
padding-right: 5px;
}
p {
size: 16px;
padding-bottom: 3px;
}
.projection-wrapper {
border-bottom: 1px solid black;
padding-bottom: 10px;
}
input[type=submit]:hover {
background-color: greenyellow;
}
input[type=submit]:active {
background-color: darkgray;
}
input[type=submit] {
background-color: lightgray;
color: black;
font-size: 20px;
border-radius: 10px;
padding: 10px;
}
table {
width: 800px;
border: 1px solid lightgray;
}
td, th {
border: 1px solid lightgray;
padding: 10px;
}