-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgst.css
111 lines (92 loc) · 1.56 KB
/
gst.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
*{
margin: 0;
padding: 0;
}
#main {
display: flex;
flex-direction: column;
}
nav {
background-color: rgb(31, 31, 31);
height: 60px;
width: 100%;
color: white;
position: fixed;
opacity: 0.9;
}
.iconify{
background: url('https://api.iconify.design/clarity/rupee-solid.svg') no-repeat center center / contain;
content: url('https://api.iconify.design/clarity/rupee-solid.svg');
}
.iconify:hover {
background: yellow;
}
#container {
/* background-color: yellow; */
/* height: 800px; */
width: 98%;
margin: 4.5% auto 0 auto;
display: flex;
padding: 1%;
}
#left {
width: 20%;
height: 100%;
/* border: solid; */
}
#right {
width: 75%;
height: 100%;
margin-left: 5%;
/* border: solid; */
}
table {
width: 100%;
text-align: center;
margin-top: 20px;
margin-bottom: 5%;
}
#left label {
display: block;
margin-top: 6%;
}
#left input {
width: 70%;
margin-bottom: 10%;
height: 25px;
padding-left: 2%;
}
select {
width: 60%;
margin-bottom: 5%;
height: 25px;
}
.right_header {
font-size: xx-large;
}
#left button {
height: 30px;
width: 60%;
display: block;
}
#right label {
display: block;
margin-top: 2%;
}
#right input {
width: 30%;
/* margin-bottom: 6%; */
height: 25px;
padding-left: 0.5%;
}
#right button {
height: 30px;
width: 15%;
/* display: block; */
margin-top: 2%;
margin-left: 2%;
}
table, th, td {
border: 1px solid rgb(0, 0, 0);
border-collapse: collapse;
}