-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal1.css
54 lines (52 loc) · 1.06 KB
/
cal1.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
body{
background-color: rgb(77, 76, 76);
}
.container {
position:absolute;
right:0px;
padding: 10px;
width: 400px;
}
#display {
text-align: center;
text-decoration: double;
font-size: 75px;
box-shadow: 5px 5px 5px 10px rgb(19, 19, 19);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.buttons {
position:absolute;
top:30%;
left:40%;
display:grid;
grid-template-columns: 50px 50px 50px 50px;
}
div.button {
border-top: 2px solid black;
border-right: 2px solid black;
}
.button {
border: 2px solid rgb(255, 254, 254);
background-color: white;
line-height: 75px;
text-align: center;
font-size: 25px;
cursor: pointer;
}
#result {
background-color: rgb(85, 85, 255);
color: white;
}
#result:hover{
background-color: rgb(1, 1, 32);
}
.button:hover {
background-color: #323330;
color: white;
}
#del{
background-color: rgb(85, 85, 255);
}
#del:hover{
background-color: rgb(19, 19, 24);
}