forked from ccoenraets/es6-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (101 loc) · 1.81 KB
/
styles.css
File metadata and controls
120 lines (101 loc) · 1.81 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
input[type=text] {
-webkit-appearance: none;
width: 150px;
height: 24px;
padding: 3px 8px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-box-shadow: none;
box-shadow: none;
}
button {
-webkit-appearance: button;
color: #333;
background-color: #DDD;
border-color: #ccc;
display: inline-block;
padding: 6px 12px;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #CCC;
border-radius: 2px;
}
button:hover {
background: none repeat scroll 0 0 #CCC;
}
button:active {
background: none repeat scroll 0 0 #BBB;
}
button:focus {
outline:0;
}
table {
border-collapse: collapse;
}
td {
text-align: right;
padding: 0 .5rem;
}
th,
td {
border: solid 1px #EEEEEE !important;
padding: 1px 4px;
}
label {
display: inline-block;
width: 80px;
text-align: right;
}
.content {
padding: 20px;
}
.bar {
display: inline-block;
border: none;
height: 8px;
}
.bar.principal {
background-color: rgb(166, 197, 103);
margin-right:.5px;
}
.bar.interest {
background-color: rgb(252, 187, 105);
margin-left:.5px;
}
.stretch {
width: 100%;
padding-left:0;
padding-right:0;
}
.flex {
display: -webkit-flex;
display: flex;
}
.currency::before {
content:"$";
}
.left {
text-align: left;
}
.form > div {
margin: 6px 0;
}
.form button {
margin: 8px 0;
margin-left: 84px;
}