-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
56 lines (50 loc) · 867 Bytes
/
calc.css
File metadata and controls
56 lines (50 loc) · 867 Bytes
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
body {
background-color: burlywood;
}
.calculatrice {
width: 350px;
height: 400px;
background-color: #eeeeee;
box-shadow:5px 8px 8px rgb(50,50,50);
border-radius: 10px;
border: 1px solid #cccccc;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin:auto;
padding-left:5px;
padding-bottom:5px;
}
.calculatrice td {
height: 16.66%;
}
.calc_td_resultat {
text-align:center;
}
.calc_resultat {
width:90%;
height: 55%;
text-align:right;
background-color: bisque;
}
.calc_td_calculs {
text-align: center;
}
.calc_calculs {
width:90%;
text-align:left;
}
.calc_td_btn {
width:25%;
height:100%;
}
.calc_btn {
width:90%;
height:90%;
font-size:20px;
background-color:#EEEEEE;
}
.btn_red_text {
color: red;
}