-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
46 lines (39 loc) · 706 Bytes
/
app.css
File metadata and controls
46 lines (39 loc) · 706 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
html,
body {
height: 100%;
width: 100%;
}
body {
font-family: Lato;
color: white;
background-image: url(background.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.container a {
color: black;
}
h1 {
font-weight: 700;
font-size: 5em;
}
h3 {
text-transform: capitalize;
}
hr {
width: 400px;
max-width: 90%;
border-top: 1px solid #f8f8f8;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
a:hover {
text-decoration: none;
}
#content {
text-align: center;
padding-top: 25%;
text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
0px 8px 23px rgba(0, 0, 0, 0.1);
}