-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
146 lines (120 loc) · 2.91 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
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
/**
About House Calc (Web Ported): House Calc (Web Ported) is the web ported of House Calc(android application made by N Paul (https://github.com/nirmalpaul383)). Original House Calc sources files can be found on https://github.com/nirmalpaul383/Project-House-Calc . House Calc is an open source "income from house property calculator" based on the Indian income tax law. Note: This calculator is made just only for publicly and quickly calculate the 'basic' taxation under 'income from house property head' in India. This is not the professional nor official tax consultant application. Users are requested to verify the result before using them on any official statement(s).
This project is originally made by me(N Paul).My github profile https: //github.com/nirmalpaul383/ My youtube page https://www.youtube.com/channel/UCY6JY8bTlR7hZEvhy6Pldxg/
This is an open source program.You are welcomed to modify it...If you want to support me please give a like to our facebook page https: //facebook.com/a.new.way.Technical/
**/
body {
font-size: 15pt;
}
#inputPage {
border: 1px double black;
padding: 2px;
}
input {
display: block;
margin: auto;
}
input[type="number"] {
width: 75vw;
height: 5vh;
background: rgb(204, 255, 255);
border: 1px dashed rgb(0, 26, 0);
border-radius: 15px;
}
input[type="text"] {
width: 80vw;
height: 5vh;
background: rgb(204, 255, 204);
border: 1px dashed rgb(0, 26, 0);
border-radius: 10px;
}
#first {
border: 1px solid red;
padding-top: 2vh;
padding-bottom: 2vh;
text-align: center;
}
#second {
border: 1px dotted blue;
margin-top: 2vh;
padding-top: 2vh;
padding-bottom: 2vh;
text-align: center;
}
#third {
border: 1px dotted green;
margin-top: 2vh;
padding-top: 2vh;
padding-bottom: 2vh;
text-align: center;
}
#fourth {
border: 1px dotted aqua;
margin-top: 2vh;
padding-top: 2vh;
padding-bottom: 2vh;
text-align: center;
}
#calculate {
margin-top: 2vh;
width: 45vw;
height: 5vh;
background: rgb(51, 204, 51);
border-radius: 12px;
}
#calculate:hover {
background: rgb(102, 255, 255);
}
#calculate:active {
background: rgb(0, 102, 255);
}
#resultPage {
border: 1px dotted rgb(0, 255, 255);
margin: auto;
padding: 2vw;
width: 90vw;
display: none;
}
table {
border: 1px solid blue;
width: 90vw;
}
td {
border: 1px solid red;
background: rgb(204, 255, 204);
}
#gav {
background: rgb(102, 255, 255);
margin-top: 10px;
font-weight: bold;
}
#nav {
background: rgb(0, 204, 255);
font-weight: bold;
}
#gavLess {
background: rgb(0, 255, 153);
margin-top: 5px;
}
#deduction {
margin-top: 10px;
}
#income {
margin-top: 10px;
background: rgb(153, 255, 153);
color: red;
font-weight: bold;
}
#reset {
margin-top: 2vh;
width: 45vw;
height: 5vh;
background: rgb(51, 204, 51);
border-radius: 12px;
}
#reset:hover {
background: rgb(255, 102, 204);
}
#reset:active {
background: rgb(204, 0, 0);
}