-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (86 loc) · 1.88 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (86 loc) · 1.88 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
94
95
96
97
body{
background-color: rgb(13,13,13);
}
#cal-background{
border: 1px solid rgb(255,0,255);
background-color: rgb(20,20,20);
border-radius: 10px;
margin: auto;
margin-top: 100px;
width: 400px;
height: 550px;
}
#cal-output{
width: 360px;
margin: auto;
margin-top: 20px;
height: 70px;
background-color: rgb(30,30,30);
border :2px solid rgb(0,255,255) ;
border-radius: 10px;
font-size: 40px;
text-align: right;
padding-top: 20px;
padding-right: 9px;
color: rgb(0,255,0);
font-weight: bold;
}
#cal-output:hover{
background-color: rgb(50,50,50);
border :2px solid rgb(255, 255, 255) ;
}
#cal-buttons-background{
margin: auto;
margin-top: 40px;
}
.cal-number-buttons{
width: 84px;
margin-left: 8px;
margin-top: 15px ;
height: 60px;
font-size: 27px;
font-weight: bold;
color: rgba(0,255,255,0.6);
border-radius: 15px ;
border-width: 5px ;
background-color: rgb(10,10,10);
}
.cal-number-buttons:hover{
width: 90px;
margin-left: 2px;
margin-top: 10px ;
height: 65px;
font-size: 35px;
border-width: 4px ;
color: rgb(0,255,255,1);
border-color:rgba(255,255,255,0.8);
background-color: rgb(40,40,40);
}
.cal-number-buttons:active{
color:rgb(255,255,255) ;
border-color:rgb(255,0,255);
background-color: rgb(70,70,70);
}
.cal-spec-buttons{
width: 84px;
margin-left: 8px;
margin-top: 15px ;
height: 60px;
font-size: 27px;
font-weight: bold;
color: rgba(255,0,255,0.6);
border-radius: 10px ;
border-width: 5px ;
background-color: rgb(10,10,10);
}
.cal-spec-buttons:hover{
width: 90px;
margin-left: 2px;
margin-top: 10px ;
height: 65px;
font-size: 35px;
border-width: 4px ;
color: rgb(0,255,255,1);
border-color:rgba(255,255,255,0.8);
background-color: rgb(40,40,40);
}