-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (72 loc) · 1.62 KB
/
style.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
75
@import url('https://fonts.googleapis.com/css?family=Roboto:100');
body {
font-family: 'Roboto', sans-serif;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.calc-btn{
color:black;
width:25px;
height:85px;
background-color:silver;
border: 1px solid grey;
text-align:center;
cursor: pointer;
font-size: 32px;
font-weight: 100;
padding-top: 3px;
}
.calc-btn:hover {
background-color: blue;
}
.row {
display: table;
table-layout: fixed;
width: 300px;
}
.column{
display: table-cell;
}
#calc-zero{
font-weight: bold;
border-radius: 0, 0, 0, 7px;
width: 52.66666667px;
}
#calc-clear{
width: 52.66666667px;
}
#calc-display-val{
height: 80px;
color: white;
text-align: right;
border-left: 1px solid grey;
border-right: 1px solid grey;
border-top: 1px solid grey;
font-size: 40px;
background-color: #383838;
overflow: hidden;
white-space: nowrap;
padding: 12px;
border-radius: 7px, 7px, 0, 0;
}
.calc-btn-operator{
color:white;
background-color: orange;
}
h1{
font-style: italic;
font-family: cursive;
text-align: center;
margin-top:50px;
}
#calc-equals{
border-radius: 0, 0, 7px, 0;
}
#calc-parent{
margin-left: calc(50% - 100px);
}