-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvue-calculator.css
79 lines (63 loc) · 1.35 KB
/
vue-calculator.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
body {
background: #085078; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #85D8CE, #085078); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #85D8CE, #085078); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.calculator {
width: 450px;
padding: 20px;
border-radius: 5px;
margin: 12% 30%;
background-color: hsl(0, 0%, 20%);
}
.input {
width: 400px; height: 50px;
border-radius: 0px;
border: 1px solid hsl(0, 0%, 0%);
background-color: #333333;
color: #d9d9d9;
padding: 0 5px 0 5px;
margin: 0 0px 10px 0px;
font-size: 30px;
}
.button {
margin: 3px;
width: 63px;
border: 1px solid hsl(0, 0%, 5%);
height: 25px;
border-radius: 4px;
color: hsl(0, 0%, 85%);
background-color: hsl(0, 0%, 10%);
cursor: pointer;
outline: none;
}
.basic-mode {
width: 415px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.complex-mode {
width: 415px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.equal-sign {
background-color: hsl(120, 100%, 25%);
width: 133px;
}
.toggle-button {
border: none;
background-color: hsl(0, 0%, 20%);
cursor: pointer;
outline: none;
}
#app {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
button::-moz-focus-inner {
border-color: transparent;
}