-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
51 lines (42 loc) · 753 Bytes
/
main.css
File metadata and controls
51 lines (42 loc) · 753 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Work+Sans');
body {
background-color: #666b8f;
color: #fff;
font-family: 'Work Sans', sans-serif;
margin: 0;
font-size: 16px;
}
h1 {
text-align: center;
}
img {
display: block;
margin: 0 auto;
}
.content {
margin-left: 20px;
}
.content ul {
list-style-type: none;
}
.content div + div {
margin-top: 50px;
}
.coding {
color: #d0c675;
font-size: 20px;
font-weight: bold;
transition: color 1s, font-size 1s;
}
.meet li::first-letter {
font-size: 150%;
font-weight: 700;
}
.cocktail > button {
background-color: #9d81a2;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
font-size: 16px;
}