-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (85 loc) · 1.54 KB
/
style.css
File metadata and controls
102 lines (85 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
body {
background-color: hsl(49, 56%, 72%);
color: #fff;
margin: auto;
display: flex;
font-family: 'Poppins', sans-serif;
justify-content: center;
align-items: center;
height:500px;
max-width: 360px;
min-width: 320px;
width:40vw;
}
.calculator_container {
background-color: hsl(214, 64%, 74%);
border-radius: 4px;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
padding: 2rem 3rem;
}
h1 {
margin: 0 0 1rem;
text-align: center;
}
.form_control {
margin: 0.75rem 0;
}
.form_control input {
padding: 0.25rem;
width: 100%;
border: 0;
border-radius: 2px;
}
.form_control label {
display: block;
}
.calculator_container footer {
margin-top: 2rem;
}
.result {
display: flex;
justify-content: space-between;
}
.pop_up{
height:0px;
-webkit-transition: height .5s ease .5s;
-moz-transition: height .5s ease .5s;
-ms-transition: height .5s ease .5s;
-o-transition: height .5s ease .5s;
transition: height .5s ease .5s;
overflow:hidden;
margin-top: 2%;
}
#head_count{
width: 18%;
margin: 0 1%;
}
input{
border: 0;
border-radius: 2px;
color: rgb(100, 100, 100)
}
input::placeholder{
color: rgb(200, 200, 200)
}
p{
margin-top: 1rem;
}
#split{
display:flex;
justify-content: space-between;
}
#round{
cursor: pointer;
border-radius: 5px;
border:0;
color: rgb(140, 140, 140);
background: rgb(230, 230, 230);
}
.clicked{
box-shadow: inset 0 0px 6px rgba(0,0,0,0.16), inset 0 0px 6px rgba(0,0,0,0.23);
}
.float{
box-shadow: 3px -3px 6px rgba(0,0,0,0.16), 3px -3px 6px rgba(0,0,0,0.23);
border-radius: 10px;
}