-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_transactions.css
199 lines (173 loc) · 3.63 KB
/
style_transactions.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*The topmost navigation bar*/
body{
background-color: black;
font:"Gill Sans" ;
color: white;
}
.header{
display: inline-block;
margin-left: 15vw;
margin-top: 10vh;
padding: 10px;
color: white;
font-size: 5vw;
font-weight: 100;
font-family: Verdana;
width: 35%;
overflow: auto;
text-shadow: 3px 3px grey;
}
.navbar{
display: block;
color: white;
font-family: monospace;
background-color: black;
padding: 8px;
width: 100%;
height: auto;
margin-bottom: 2px;
overflow: hidden;
box-shadow: 2px 2px 8px #000000;
}
.navbar a {
font-family: sans-serif;
font-weight: bold;
color: #f2f2f2;
text-align: center;
padding: 12px 14px;
text-decoration: none;
font-size: 15px;
display: inline-block;
}
/* Change the color of links on hover */
.navbar a:hover {
box-shadow: 0px 2px whitesmoke;
font-weight:bolder;
transition: 0.5s;
color: #C0C0C0;
}
/* Add a color to the active/current link */
.navbar a.active {
color: #e4ba4e;
}
/* the center container below navbar*/
.container{
width: 100%;
height: 60%;
background: linear-gradient(140deg,rgb(71, 70, 59), rgb(185, 185, 185), #b49636 ,rgb(183, 180, 180), #ffc404 );
margin-bottom: 10px;
animation: gradient 10s ease infinite;
background-size: 400% 400%;
}
@keyframes gradient{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
/*graphics page break in between*/
.pagebreak{
display: block;
width: 100%;
height: 8vh;
background: linear-gradient(40deg,rgb(71, 70, 59), rgb(223, 211, 211), #ac8d27 ,rgb(100, 97, 97), #ffc609 );
margin-bottom: 10px;
animation: gradient 7s ease infinite;
background-size: 400% 400%;
margin-top: 20px;
margin-bottom: 20px;
}
.contentbox{
position: absolute;
margin: 5px;
padding: 5px;
background-color: black;
color: white;
transition: 0.3s;
width: 100%;
border-radius: 5px;
}
/*hovered menu - yellow box*/
.contentbox h1{
display: block;
font-family: 'Trebuchet MS';
font-size: 25px;
color: white;
background-color: #FF8C00;
border-radius: 10px;
border-style: double;
border: 2px solid white;
padding-top: 5px;
padding-bottom: 5px;
}
/* .contentbox:hover{
transition: 0.3s;
border: 2px solid grey;
box-shadow: 8px 8px 15px grey;
border-radius: 5px;
} */
.content{
padding-left: 5vw;
padding-right: 5vw;
}
.customer{
color: white;
border: 2px solid white;
}
.customer th{
box-shadow: 0px 1px white;
font-family: "Trebuchet MS";
padding: 15px;
margin: 15px;
font-weight: bold;
font-size: 20px;
}
.customer td{
font-family: Verdana;
font-size: 15px;
}
.button{
align-self: center;
align-content: center;
font-family: Verdana;
font-size: 14px;
background-color: #FF8C00;
border-radius: 10px;
color: white;
border: 1px solid white;
padding: 12px;
width:fit-content;
}
/* .button:hover{
cursor: pointer;
box-shadow: 2px 2px grey;
background-color: #ffc404;
} */
/* Bottom of the page*/
.footer{
width: 100%;
display: block;
color: white;
font-family: monospace;
font-size: 15px;
font-style: normal;
background-color: black;
padding: 2px;
margin-top: 2px;
}
@media screen and (max-width: 800px) {
.container{
width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
}
input,textarea{
width: 80%; /* The width is 100%, when the viewport is 800px or smaller */
}
.btn{
width: 30%;
}
}