-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (75 loc) · 1.3 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
84
85
86
87
88
89
90
body {
background-image: url('images/girlguy3.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
margin: 0;
}
.schedule {
margin: auto;
padding: 20px;
width: 40vw;
box-sizing: border-box;
color: #E3E3E3;
background-color: rgba(30, 30, 30, 0.85);
font-family: 'Lato', sans-serif;
font-style: normal;
font-size: 1.2rem;
line-height: 1.5;
}
@media (max-width: 1024px) {
.schedule {
width: 70vw;
}
}
@media (max-width: 480px) {
body {
background-position: -230px;
}
.schedule {
width: 100vw;
}
img.header {
width: 100% !important;
background: rgba(30, 30, 30, 0.85);
}
}
.schedule h1, .schedule h2 {
text-align: center;
}
.schedule h1 {
font-size: 3.2rem;
}
.schedule h2 {
font-size: 2.3rem;
margin-top: 60px;
}
.schedule .schedule-list {
list-style-type: none;
text-align: left;
padding-left: 0;
}
.schedule .schedule-list li {
display: flex;
flex-direction: row;
margin-bottom: 25px;
}
.schedule .schedule-list li time {
width: 130px;
font-weight: 700;
flex-shrink: 0;
}
.schedule .schedule-list li span {
color: lightgrey;
}
.schedule img.logo {
width: 120px;
margin: 55px auto;
display: block;
}
img.header {
width: 90%;
max-width: 440px;
margin: auto;
display: block;
}