-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (77 loc) · 1.41 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #d3f1f8;
}
.vat-calc {
background: #0ad3ff;
padding: 3rem 1rem;
border-radius: 10px;
box-shadow: 0 1px 5px 0 rgba(28, 184, 227, 1);
margin: 0 auto;
}
h2 {
text-align: center;
font-size: 2rem;
text-transform: uppercase;
padding: 1.2rem 0;
color: #fff;
}
.main-wrapper {
padding: 1rem;
height: 160px;
border-radius: 5px;
}
.button_group {
display: flex;
}
.main-btn {
padding: 0.6rem 0;
font-size: 1rem;
border-radius: 25px;
border: none;
outline: none;
width: 120px;
color: #212121;
background: #fff;
margin: auto;
margin-top: 36px;
transition: all 0.5s ease;
cursor: pointer;
}
.main-btn:hover {
background: #252525;
color: #fff;
}
form {
line-height: 1.8;
}
form label {
font-weight: bold;
padding-right: 0.5rem;
color: #fff;
}
form input {
font-size: 1rem;
padding: 0.3rem;
outline: none;
border: none;
text-align: right;
border-radius: 5px;
}
form input[disabled] {
border: 1ps solid #fff;
}
form div {
display: flex;
justify-content: space-between;
padding: 0.3rem 0;
}