-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
78 lines (76 loc) · 1.45 KB
/
index.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
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
body {
font-family: 'Roboto Slab', serif;
font-weight: 300;
font-size: 16px;
line-height: 1.4em;
color: black;
background: #eee;
}
.body {
min-width: 250px;
width: 90%;
margin: 20px auto;
background: #fff;
box-shadow: 0 20px 28px #ddd;
text-align: center;
animation: fadeIn 1s ease-in-out;
}
.body:hover {
box-shadow: 0 20px 30px #ccc;
}
.body h1 {
margin: 0.5em 0 0.5em 0;
font-size: 1.6em;
font-weight: 700;
color: #fff;
}
.body p {
margin-bottom: 1.6em;
}
.wrapper {
padding: .5vw 2em;
}
.hero {
background-image: linear-gradient(45deg, #ffffff, #ffffff, #ffff00 100%);
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
}
.nav {
padding: 1vw 2em;
}
.nav li {
list-style: none;
display: inline-block;
padding-right: 10px;
cursor: pointer;
}
.nav a:link{
text-decoration: none;
color: black;
}
.nav li:hover{
text-decoration: underline;
}
.header {
line-height: 1.2;
text-align: center;
padding: 12vw;
}
.logo {
width: 100%;
max-width: 600px;
}
.footer {
color: #999;
text-align: right;
}
::selection {
color: #fff;
background: #fdc39b;
}
@keyframes fadeIn {
0% {transform: translateX(-150px)}
100% {transform: translateX(0px)}
}