-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathStyle.css
More file actions
74 lines (73 loc) · 1.51 KB
/
Style.css
File metadata and controls
74 lines (73 loc) · 1.51 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
/* basic css implentation that is just for extra design and responsiveness of the calculator */
/* COde starts form here */
/* Coded by Vaibhav Yadav */
body{
overflow: hidden;
font-size: 2%;
}
.displays{
box-shadow: 0 0 9px black;
border-radius: 5px;
}
.dibba{
margin: 3% 8% 8% 8%;
}
.contain{
border-radius: 5px;
box-shadow: 7px 7px 12px black;
background: rgb(2,0,36);
background: linear-gradient(210deg, rgba(2,0,36,1) 0%, rgba(21,21,107,1) 44%, rgba(43,9,121,0.9116046348314607) 100%, rgba(0,212,255,1) 100%);
color: wheat;
}
label{
padding-top: 2%;
font-weight: bold;
margin: 4px;
}
/* styling input icons placed in it */
.input-container{
display: flex;
width: 100%;
margin-bottom: 15px;
}
.icon{
border-radius: 5px;
padding: 10px;
background: rgb(6, 6, 75);
/* color: white; */
min-width: 50px;
text-align: center;
}
input{
width: 100%;
border-radius: 5px;
padding: 5px ;
}
input[type=text]:focus{
outline: none;
}
/* Increase Decrease Button */
#btnincrease{
border-radius: 50%;
background-color: rgb(14, 14, 82);
box-shadow: 3px 3px 9px black;
padding: 2%;
cursor: pointer;
}
#btnincrease:active{
transform: translate(3px,3px);
}
#btndecrease{
border-radius: 50%;
background-color: rgb(14, 14, 82);
box-shadow: 3px 3px 9px black;
padding: 2%;
cursor: pointer;
}
#btndecrease:active{
transform: translate(3px,3px);
}
/* innercontainer elements */
.innercontainer{
display: flex;
}