-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles2.css
92 lines (78 loc) · 1.32 KB
/
styles2.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
87
88
89
90
91
92
@keyframes transitionIn {
from {
opacity: 0;
transform: rotateX(-10deg);
transform: translateX(20px);
}
to {
opacity: 1;
transform: rotateX(0);
}
}
body {
animation: transitionIn 1s;
background-color: #b1bea1;
background-image: url("assets/calendar_background.png");
color: #35381d;
height: 545px;
width: 316px;
overflow: hidden;
}
button {
height: 12px;
width: 5px;
background-color: #d3e2c3;
float: none;
outline: none;
border: none;
border-radius: 30%;
margin: none;
transition-duration: 0.7s;
}
button:hover {
transform: scale(1.19);
transition-duration: 0.2s;
}
h1 {
margin-top: 4px;
margin-left: 10px;
text-align: right;
color: #35381d;
}
div {
float: right;
text-align: right;
}
table {
margin-top: 4px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
tr, td {
padding: 0;
}
.chart {
float: left;
text-align: left;
}
.disable {
background-color: #b1bea1;
}
#hoverdate {
font-size: medium;
}
#hovermood {
font-size: small;
}
#homenav {
text-align: center;
position: relative;
margin-right: 3px;
bottom: 0px;
}
#homebutton {
background-image: url("assets/home_icon.png");
height: 22px;
width: 22px;
}