forked from dynamic11/SPAC
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreativeSchedule.css
More file actions
83 lines (68 loc) · 1.41 KB
/
creativeSchedule.css
File metadata and controls
83 lines (68 loc) · 1.41 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
body{
font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
background-image: linear-gradient(to bottom, rgba(53,129,174,0.9), rgba(243,243,224,0.7)), url('../img/background.jpg');
background-repeat:no-repeat;
background-size:cover;
height:100vh;
}
html{
height:100vh;
}
div{
margin: 0 auto;
position:relative;
background-color:white;
max-width:80%;
box-shadow: 0 0 5px rgba(0,0,0,0.8);
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.8);
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.8);
-o-box-shadow: 0 0 5px rgba(0,0,0,0.8);
border-radius:25px;
}
#timetable, #patrons{
padding:25px 0;
}
table {
margin: 0 auto;
border-radius:25px;
background-color:#FBF7F4;
}
p{
font-weight:200;
}
table th:first-of-type{
width:100px;
}
table th:nth-of-type(2n){
width:calc(100% - 150px);
padding-left:15px;
text-align:left;
}
table tr:nth-of-type(2n){
background-color:#F7EEE9;
}
table th{
height:85px;
max-height:85px;
display:inline-block;
background-size: cover;
background-repeat:no-repeat;
}
table tr img{
width:100%;
height:100%;
}
table tr:first-of-type th{
border-radius: 15px 0 0 0;
}
table tr:last-of-type th{
border-radius: 0 0 0 15px;
}
h1{
text-align:center;
background-color:white;
border-radius:25px;
}
.time{
color: #00B8F1;
}