-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleCalendar.css
112 lines (112 loc) · 2.04 KB
/
styleCalendar.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body{
justify-items: center;
user-select: none; /* Standard */
}
.calendar{
width:280px;
border-bottom: 1px solid dimgray;
/*border-radius: 10px;*/
}
.header{
position: relative;
display: flex;
flex-direction: row;
justify-content: space-evenly;
font-family: "Century Schoolbook";
width: 100%;
height: 65px;
border-top: 1px solid dimgray;
border-bottom: 1px solid dimgray;
background: linear-gradient(45deg, white, Floralwhite,white);
}
#prev, #next{
border-radius: 8px;
font-weight: bold;
border: none;
font-size: 15px;
background-color: white;
user-select: none;
}
#prev:hover, #next:hover{
cursor: pointer;
transform: scale(1.05);
}
#prev{
position: relative;
left: 10px;
top: 17px;
height: 30px;
padding-top: 4px;
}
#next{
position: relative;
top: 17px;
right: 10px;
height: 30px;
padding-top: 4px;
}
#changeYear{
position: relative;
top: 13px;
left: 10px;
display: flex;
flex-direction: column;
margin-right: 10px;
display: none;
}
.header:hover #changeYear{
display: flex;
}
.currentMonth{
display: flex;
justify-content: center;
}
#month-year{
padding-top: 3px;
font-size: 20px;
}
.Dates{
display: flex;
flex-direction: column;
justify-content: space-around;
height: 250px;
}
.ROW1{
display: flex;
flex-direction: row;
justify-content: space-evenly;
color: #A91B0D;
}
.ROW{
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.COLUMN1{
width: 30px;
height: 25px;
font-size: 15px;
font-weight: bold;
display: flex;
justify-content: center;
font-family: Calibri;
}
.COLUMN{
width: 25px;
height: 25px;
border-radius: 9px;
border: none;
font-weight: bold;
font-size: 13px;
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.COLUMN:hover{
cursor: pointer;
}
#month-year:hover, .ROW1:hover{
cursor: default;
}