-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.css
93 lines (79 loc) · 1.13 KB
/
application.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
* {
box-sizing: border-box;
}
html {
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
body {
margin: 0;
background: #fff;
color: #333;
}
a {
color: #23527c;
}
.container {
margin: 0 auto;
max-width: 700px;
padding: 4rem 0;
}
.navigation .container {
padding: 1.5rem 0;
}
.navigation a {
display: inline-block;
padding: 0.5rem;
}
.navigation a:first-child {
padding-left: 0;
}
.header {
background-color: rgb(252,243,239);
font-weight: 300;
}
.header img {
width: 350px;
height: 350px;
}
.content-container .content:nth-child(even) {
background-color: #f8f8f8;
}
.footer {
margin: 6rem 0;
text-align: center;
font-size: 0.875rem;
color: #aaa;
}
.artist {
display: flex;
padding: 1rem 0;
}
.artist img {
flex: 0 0 6rem;
width: 6rem;
height: 6rem;
margin-right: 1rem;
}
.artist__name {
display: block;
font-weight: bold;
}
.artist__instrument {
font-size: 0.875rem;
font-style: italic;
}
.dates {
display: flex;
justify-content: space-between;
}
.date {
flex: 0 0 40%;
}
.date__location {
font-size: 1.4rem;
font-weight: bold;
}
.date__address {
margin-top: 1rem;
}