-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
103 lines (88 loc) · 1.43 KB
/
main.css
File metadata and controls
103 lines (88 loc) · 1.43 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
html,
body {
font-family: 'Open Sans', sans-serif;
}
* {
margin: 0;
padding: 0;
}
nav ul {
background: #3ad150;
text-align: center;
position: fixed;
width: 100%;
}
nav ul li {
display: inline-block;
margin: 35px;
margin-bottom: 15px;
margin-top: 25px;
}
nav ul li a {
color: black;
text-decoration: none;
}
nav ul li a:hover {
color: orange;
}
.home {
padding-top: 300px;
padding-bottom: 420px;
text-align: center;
background: #e0ebe8;
}
.home p {
padding-top: 10px;
color: orange;
}
.bio {
padding-top: 125px;
padding-bottom: 150px;
text-align: center;
}
.bio p {
padding-top: 25px;
margin-left: 150px;
margin-right: 150px;
}
.work {
background: #C8F7C5;
padding-top: 240px;
padding-bottom: 240px;
text-align: center;
}
.work img {
height: 200px;
margin-left: 30px;
margin-right: 30px;
}
#storyButton {
background-color: orange;
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
outline: none;
margin-top: 15px;
border-radius: 8px;
width: 100px;
}
#shuffle {
background-color: lightblue;
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
outline: none;
margin-top: 15px;
border-radius: 8px;
}
#storyParagraph {
line-height: 1.6;
}