-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcalstyle.css
More file actions
84 lines (70 loc) · 1.11 KB
/
calstyle.css
File metadata and controls
84 lines (70 loc) · 1.11 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
* {
padding: 0;
margin: 5px;
text-align: center;
}
body {
background-color:white;
}
.layout {
border:1px solid black;
margin:auto;
height: 700px;
width: 550px;
padding-top: 16px;
background-color: #2f4f4f;
border-radius: 8px;
}
#display {
height: 150px;
width: 520px;
background-color: #d3d3d3;
padding: 12px 20px;
box-sizing: border-box;
border: 1px solid black;
font-size: 36px;
resize: none;
border-radius: 8px;
}
.btn {
border-color: black;
border-width: 1px;
padding: 16px 32px;
font-size: 24px;
display: inline-block;
cursor: pointer;
width: 100px;
height: 70px;
margin-bottom: 10px;
margin-right: 10px;
margin-top: 10px;
margin-left: 10px;
border-radius: 8px;
}
.btn-danger{
color: white;
background-color: #ff1919;
}
}
.btn-danger:hover {
background-color: #ff0000;
}
.btn-primary {
color: black;
background-color: white;
}
.btn-primary:hover {
background-color: #C0C0C0;
color: white;
}
.btn-info {
background-color: #57C2DE;
color: white;
}
.btn-info:hover {
background-color: #00cc9d;
}
.btn-operations {
background-color: #5BB85D;
color: white;
}