-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcal.css
More file actions
93 lines (89 loc) · 1.67 KB
/
cal.css
File metadata and controls
93 lines (89 loc) · 1.67 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body{
margin: 0;
padding: 0;
line-height: 0.5;
background: linear-gradient(to left,skyblue,lightgreen);
}
.calc{
width: 500px;
padding-top: 100px;
padding-bottom: 100px;
position: absolute;
top: 50%;
left: 70%;
transform: translate(-50%,-50%);
transition: 0.25px;
text-align: center;
}
#display{
border: none;
background: white;
border-radius: 30px;
width: 245;
font-size: 20;
font-family: sans-serif;
font-weight: 300;
height: 60;
margin: auto;
border: 2px solid white;
color: black;
}
.btnDesign{
width: 55;
height: 55;
padding-top: -1;
background: white;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
}
.operatorDesign{
width: 55;
height: 55;
background: white;
padding-top: -1;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
transition: 00.25px;
cursor: pointer;
}
.operatorDesign:hover{
background:mediumspringgreen;
}
#zero{
width: 116;
height: 55;
background: white;
padding-top: -1;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
}
h1{
color: brown;
margin-top: 300px;
margin-left: 100px;
text-transform: uppercase;
font-family: sans-serif;
font-weight: 700px;
font-size: 50;
text-decoration: underline;
}
h2{
color: black;
margin-top: -1px;
margin-left: 187px;
font-family: sans-serif;
font-weight: 500px;
font-size: 40;
}