forked from JOS-RE/Calculator-Counter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (114 loc) · 2.44 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (114 loc) · 2.44 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
html {
display: -ms-grid;
display: grid;
min-height: 100%;
}
body {
display: -ms-grid;
display: grid;
background: #E0C9CB;
font-family: "Lato", sans-serif, sans-serif;
text-transform: uppercase;
}
.container {
align-items: center;
text-align: center;
position: relative;
margin: auto;
overflow: hidden;
width: 780px;
height: 620px;
background: #F5F5F5;
-webkit-box-shadow: 5px 5px 15px rgba(186, 126, 126, 0.5);
box-shadow: 5px 5px 15px rgba(186, 126, 126, 0.5);
border-radius: 10px;
}
table {
margin: auto;
margin-top: 10px;
height: 450px;
width: 550px;
box-shadow: black;
}
input {
width: 33rem;
height: 3rem;
border-radius: 10px;
border: none;
box-shadow: 5px 5px 15px rgba(186, 126, 126, 0.5);
font-size: 40px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #b88e04;
padding: 10px;
text-align: right;
}
.heading {
color: #4E4E4E;
margin-top: -5px;
font-family: Neucha;
}
.button-num {
background: #F7959D;
padding: 10px;
display: inline-block;
outline: 0;
border: 0;
margin: -1px;
width: 8rem;
height: 5rem;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 1px;
color: #F5F5F5;
cursor: pointer;
font-size: xx-large;
box-shadow: 5px 5px 15px rgba(233, 181, 181, 0.5);
}
.button-num:hover {
background: #ff9fa7;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.button-ops {
background: #ff92c5;
padding: 10px;
display: inline-block;
outline: 0;
border: 0;
margin: -1px;
width: 8rem;
height: 5rem;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 1px;
color: #F5F5F5;
cursor: pointer;
font-size: x-large;
box-shadow: 5px 5px 15px rgba(255, 212, 212, 0.5);
}
.button-ops:hover {
background: #f573b0;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.button-eql {
background: #ff9077;
padding: 10px;
display: inline-block;
outline: 0;
border: 0;
margin: -1px;
width: 8rem;
height: 5rem;
border-radius: 2px;
text-transform: uppercase;
letter-spacing: 1px;
color: #F5F5F5;
cursor: pointer;
font-size: x-large;
}
.button-eql:hover {
background: #ffcc24;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}