-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcalcul.css
More file actions
79 lines (70 loc) · 1.42 KB
/
calcul.css
File metadata and controls
79 lines (70 loc) · 1.42 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
body {
background-color: #222;
}
.box {
background-color: blueviolet;
height: 300px;
width: 250px;
border-radius: 10px;
position: relative;
top: 80px;
left: 40%;
}
.display {
background-color: #222;
width: 220px;
position: relative;
left: 15px;
top: 20px;
height: 40px;
}
.display input {
position: relative;
left: 2px;
top: 2px;
height: 35px;
color: black;
background-color: #bccd95;
font-size: 21px;
text-align: right;
width:220px;
}
.keys {
position: relative;
top: 15px;
}
.button {
width: 40px;
height: 30px;
border: none;
border-radius: 8px;
margin-left: 17px;
cursor: pointer;
border-top: 2px solid transparent;
}
.button.gray {
color: white;
background-color: #6f6f6f;
border-bottom: black 2px solid;
border-top: 2px #6f6f6f solid;
}
.button.pink {
color: black;
background-color: #ff4561;
border-bottom: black 2px solid;
}
.button.black {
color: black;
background-color: 303030;
border-bottom: black 2px solid;
border-top: 2px 303030 solid;
}
.button.orange {
color: black;
background-color: FF9933;
border-bottom: black 2px solid;
border-top: 2px FF9933 solid;
}
p {
line-height: 10px;
}