-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalcul.css
More file actions
67 lines (66 loc) · 1.28 KB
/
calcul.css
File metadata and controls
67 lines (66 loc) · 1.28 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
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
body{
padding: 0px;
margin: 0px;
display: flex;
justify-content: center;
align-items: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.conte{
width: 300px;
height: 490px;
padding:10px;
margin-top: 50px;
position: relative;
background-color: black;
border-radius: 50px;
}
.champ{
width: 95%;
height: 100px;
margin-top: 15px;
margin-left:6px;
border-radius: 20px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
font-size: 18px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
background-color: white;
color: black;
user-select: none;
}
.touches{
width: 100%;
height: 100%;
position: absolute;
margin-left: 7px;
margin-top:10px;
display: grid;
grid-template-columns: repeat(4, 65px);
grid-template-rows: repeat(5, 65px);
}
.btn{
border-radius: 100%;
border: none;
margin-bottom:5px;
margin-left:5px;
}
.btn:active{
transform: translateY(1px);
}
#sign{
background-color: orange;
color: white;
font-weight: 600;
}
.nbr{
background-color: rgb(221, 219, 215);
color: black;
font-weight: 600;
}