-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (64 loc) · 1.01 KB
/
style.css
File metadata and controls
67 lines (64 loc) · 1.01 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
*{
font-family: sans-serif;
cursor: pointer;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
table{
}
h1{
display: flex;
justify-content: center;
}
.day{
width: auto;
height: auto;
background-color: #ff7676;
border: 1px solid #fef0f0;
margin: 15px;
}
.time{
width: auto;
height: auto;
background-color: #ff7676;
border: 1px solid #fef0f0;
margin: 15px;
}
td{
background-color: #fef0f0;
transition: ease 0.3s;
}
.mon :nth-child(2){
background-color: pink;
}
.tue :nth-child(3){
background-color: pink;
}
.wed :nth-child(4){
background-color: pink;
}
.thu :nth-child(5){
background-color: pink;
}
.fri :nth-child(6){
background-color: pink;
}
.sat :nth-child(7){
background-color: pink;
}
.sun :nth-child(8){
background-color: pink;
}
tr{
background-color: #fef0f0;
transition: ease 0.3s;
}
h1:hover{
font-size: 40px;
transition: 3s;
font-style: italic;
}