-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcal.css
More file actions
66 lines (62 loc) · 1.06 KB
/
cal.css
File metadata and controls
66 lines (62 loc) · 1.06 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
body{
background: linear-gradient(to left, #8E0E00, #1F1C18);
}
.calci{
margin-left: 35%;
margin-top: 8%;
width:308px;
height:400px;
background-color: gray;
border: 4px solid black;
}
h1{
margin-left: 35%;
font-weight: bolder;
font-family:monospace;
color: black;
font-size: 40pxs;
}
#display{
height: 50px;
background-color: white;
width:280px;
margin-top: 10px;
margin-left:10px;
border: 1px solid black;
border-radius: 5px;
}
#no-button{
margin-left:10px;
width: 61px;
height: 50px;
margin-top: 15px;
font-size: 30px;
background-color: black;
color: white;
border:3px solid white;
border-radius: 5px;
}
#equal-button{
margin-left:10px;
width: 213px;
height: 50px;
margin-top: 15px;
font-size: 30px;
background-color:#032358;
border-radius: 2px;
color: white;
}
#operator-button{
margin-left:10px;
width: 61px;
height: 50px;
margin-top: 15px;
font-size: 30px;
background-color: #4484ef;
color: black;
font-weight:bolder;
border-radius:2px;
}
a {
cursor: pointer;
}