-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
121 lines (102 loc) · 1.83 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
background: linear-gradient(to right, #43c6ac, #191654);
}
input {
width: 8%;
text-align: center;
}
.card,
.card-body {
border: 3px solid #1c2331;
border-radius: 10px;
box-shadow: 2px 2px 2px rgba(96, 94, 94, 0.1);
}
.input-margin-bottom {
margin-bottom: 10px;
text-align: center;
margin-right: 2%;
margin-left: 2%;
min-width: 100px;
background-color: #f8f8f8;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.resultbox {
background-color: #f8f8f8;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
margin-top: 20px;
padding: 10px;
text-align: center;
}
.xsmallbox {
font-size: 16px;
margin: 0;
padding: 0;
}
.xcont {
margin-top: 10px;
}
.vboxvar {
color: white;
}
footer {
background-color: #1c2331;
font-size: 90%;
padding: 20px 0;
}
footer p {
margin-bottom: 0;
}
footer p span {
color: #00c853;
font-weight: bold;
}
#order-label {
color: white;
font-size: large;
font-weight: bold;
}
table {
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
box-sizing: border-box;
border-collapse: collapse;
width: 100%;
margin-bottom: 1rem;
background-color: transparent;
border-radius: 5rem;
}
td {
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
border-collapse: collapse;
box-sizing: border-box;
padding: .3rem;
vertical-align: top;
border: 1px solid #212529;
}
tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, .05);
}
td:first-of-type {
font-size: 1rem;
line-height: 1.5;
border-collapse: collapse;
box-sizing: border-box;
text-align: inherit;
padding: .3rem;
vertical-align: bottom;
color: #fff;
background-color: #56565f;
width: 10%;
}