-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (60 loc) · 1.03 KB
/
style.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
body{
background: hsla(171,40%,60%,0.3);
}
#container{
width: 50%;
margin: 40px auto 20px auto;
text-align: center;
border-style: groove;
background-color: hsla(171,50%,60%,0.5);
border-radius: 10px;
font-family: sans-serif;
}
table{
margin: 0px auto 20px auto;
text-align: right;
border-collapse: separate;
border-spacing: 20px 5px;
}
td{
border: 1px solid red;
height: 50px;
padding: 0px;
vertical-align: bottom;
}
td:first-child{
color: red;
}
.holydays {
font-weight: bold;
}
.unavailable{
border: none;
}
#year, #month{
margin-top: 40px;
display: inline;
border: none;
font-family: inherit;
font-size: 25px;
font-weight: bold;
margin-bottom: 30px;
outline: none;
background: transparent;
}
/* Turn Off Number Input Spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
#year{
width: 70px;
}
#month{
text-align: right;
width: 150px;
}
h1{
display: inline;
}