-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalcc.css
86 lines (85 loc) · 1.84 KB
/
calcc.css
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
html
{
height:100%;
background-image: linear-gradient(to right, #C04848, #480048);
background-repeat:no-repeat;
}
table
{
margin-left:auto;
margin-right:auto;
background-color:black;
border-radius:0px 0px 20px 20px;
width:250px;
height:320px;
}
.display
{
margin-left: 635px;
margin-top: 100px;
border: none;
border-radius: 20px 20px 0px 0px;
background-color: black;
width: 250px;
height: 150px;
color: white;
font-family: cursive;
font-size: 31px;
text-align: right;
}
button.b
{
border:0px;
background-color:#362E2E;
color:white;
width:50px;
height:50px;
border-radius:50%;
display:block;
font-weight: bold;
font-family:monospace;
font-size:20px;
}
button.o
{
border:0px;
background-color:#FF6E10;
color:white;
width:50px;
height:50px;
border-radius:50%;
display:block;
font-weight: bold;
font-family:monospace;
font-size:20px;
}
button.w
{
border:0px;
background-color:#ECECEC;
color:black;
width:50px;
height:50px;
border-radius:50%;
display:block;
font-weight: bold;
font-family:monospace;
font-size:20px;
}
td
{
padding-left:5px ;
}
button.z
{
border:0px;
background-color:#362E2E;
color:white;
width:110px;
height:50px;
border-radius:30px;
display:block;
font-weight: bold;
font-family:monospace;
font-size:20px;
}