-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (104 loc) · 1.54 KB
/
style.css
File metadata and controls
124 lines (104 loc) · 1.54 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
121
122
123
124
* {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
body {
min-height: 1000px;
display: flex;
flex-direction: column;
background-color: rgb(106, 166, 245);
color: black;
}
.headerBar {
background-color: blue;
color: bisque;
text-align: center;
padding: 20px;
}
.title {
margin-bottom: 20px;
color: white;
}
.topbar {
margin-bottom: 10px;
}
.currency {
font-size: 30px;
font-weight: 300;
}
.balance {
font-size: 30px;
font-weight: 300;
}
.content {
width: 580px;
margin: 0 auto;
padding: 3%;
padding-left: 6%;
}
.secondTitle {
background-color: blue;
color: white;
text-align: center;
margin-top: 100px;
padding: 20px;
font-size: 25px;
}
.form {
padding: 5px;
padding-top: 20px;
padding-left: 10%;
justify-content: center;
background-color: bisque;
}
.formLine {
display: inline-flex;
padding: 5px 0px;
}
.left {
float: left;
}
.right {
float: right;
margin-right: 100px;
}
input,
select {
width: 130px;
margin-left: 10px;
}
/* table style */
table {
width: 100%;
}
thead {
background-color: blue;
color: white;
line-height: 30px;
}
tbody {
background-color: bisque;
line-height: 30px;
text-align: center;
}
/* Button */
button {
width: 200px;
color: #fff;
padding: 10px;
text-align: center;
font-size: 1.1em;
line-height: 20px;
background-color: blue;
border-radius: 5px;
margin: 14px 25%;
cursor: pointer;
}
button:hover {
box-shadow: 0 0 0 2px grey;
transition: 0.5s;
}
a {
text-decoration: underline;
cursor: pointer;
}