-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (93 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (93 loc) · 1.83 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
.wrapper{
}
.wrapper .heading{
text-align: center;
}
.wrapper .formCOntainer{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 80%;
margin: 100px auto 0;
border-radius: 2rem;
box-shadow: 0 1px 20px black;
overflow: hidden;
box-sizing: border-box;
padding: 40px 25px;
background-color: #efefef;
}
.formCOntainer .form{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.form .fieldContainer{
display: flex;
flex-direction: row;
flex-wrap: wrap ;
row-gap: 10px;
}
.form .btnContainer{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
column-gap: 5px;
row-gap: 7px;
}
.btnContainer button{
padding: 10px;
border-radius: 10px;
outline: 0;
}
.blue{
background-color: #3084e4ed;
color:white ;
font-weight: 900;
border: 1px solid #3084e4;
}
.green{
background-color: #15a821ed;
border: 1px solid #15a821;
color:white ;
font-weight: 900;
}
.fieldContainer .field-group{
width: 200px;
}
.field-group label{
display: block;
}
.field-group input[type="number"]{
padding: 5px;
text-align: center;
border-radius: 15px;
outline: 0;
overflow: hidden;
font-size: 16px;
color: brown;
width: 100px;
margin-top: 10px;
}
input[type="number"]::-webkit-inner-spin-button{
-webkit-appearance: none;
}
.wrapper .result-container{
display: flex;
flex-direction: row;
align-items: center;
width: 80%;
margin: 20px auto 0;
border-radius: 2rem;
box-shadow: 0 1px 20px black;
overflow: hidden;
box-sizing: border-box;
padding: 40px 25px;
background-color: #efefef;
}
.result-container span{
font-weight: 900;
font-size: 20px;
}