Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
YStrano
GitHub Repository: YStrano/DataScience_GA
Path: blob/master/april_18/templates/example-lesson/starter-code/public/css/style.css
1907 views
1
body {
2
font-family: 'Slabo 27px', serif;
3
line-height: 1.5;
4
background: #f1f4f6;
5
}
6
7
h1,h2,h3,h4,h5,h6 {
8
margin: 0 0 20px;
9
}
10
11
h1, h2 {
12
font-size: 30px;
13
}
14
15
a {
16
color: #000;
17
}
18
19
header {
20
width: 100%;
21
background: black;
22
}
23
24
header nav {
25
max-width: 960px;
26
margin: 0 auto;
27
height: 60px;
28
line-height: 60px;
29
}
30
31
header nav ul {
32
height: 60px;
33
line-height: 60px;
34
}
35
36
header nav ul li:first-child {
37
float: left;
38
padding: 0;
39
font-size: 35px;
40
}
41
42
header nav ul li {
43
display: inline;
44
list-style-type: none;
45
height: 60px;
46
line-height: 60px;
47
float: right;
48
padding: 0 10px;
49
}
50
51
header nav ul li a {
52
color: white;
53
text-decoration: none;
54
}
55
56
main, footer {
57
max-width: 960px;
58
margin: 40px auto;
59
}
60
61
main .artists {
62
margin: 20px 0;
63
}
64
65
main ul {
66
list-style-type: none;
67
padding: 0;
68
}
69
70
.artists .row {
71
height: 100px;
72
}
73
74
.songs .row {
75
height: 30px;
76
}
77
78
.artists .row,
79
.songs .row {
80
clear: both;
81
background: #fff;
82
padding: 10px;
83
margin: 0 0 10px;
84
}
85
86
.artists .row img {
87
float: left;
88
max-height: 100px;
89
}
90
91
.artists .row ul {
92
float: left;
93
margin: 0 0 0 10px;
94
}
95
96
.artists .row h2,
97
.artists .row h2 a {
98
font-size: 20px;
99
margin: 0 0 10px;
100
text-decoration: none;
101
}
102
103
.songs .row ul li a,
104
.songs .row ul li button {
105
.artists .row ul li a,
106
.artists .row ul li button {
107
color: black;
108
background:none!important;
109
border:none;
110
padding:0!important;
111
font: inherit;
112
text-decoration: underline;
113
cursor: pointer;
114
}
115
116
input, select {
117
display: block;
118
line-height: 2;
119
width: 300px;
120
margin: 0 0 10px;
121
}
122
123
input[type=submit],
124
.btn {
125
background: #d8e1e5;
126
border: none;
127
padding: 10px;
128
text-transform: uppercase;
129
font-weight: 700;
130
width: 305px;
131
color: #535454;
132
text-decoration: none;
133
display: block;
134
margin-bottom: 20px;
135
}
136