-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (74 loc) · 1.38 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (74 loc) · 1.38 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
body{
margin: 0;
font-family: 'Questrial', sans-serif;
}
header{
height: 80px;
border-bottom: 1px dotted #666666;
}
header h1 {
text-align: center;
font-family: 'Domine', serif;
font-size: 24px;
letter-spacing: 6px;
line-height: 80px;
margin: 0;
text-decoration: none;
}
header h1 a{
color: #222;
text-decoration: none;
text-transform: uppercase;
}
main{
max-width: 960px;
text-align: center;
margin: 90px auto 90px auto;
}
main h2{
font-size: 30px;
font-weight: normal;
margin: 0;
}
main p{
color: #999;
font-size: 18px;
}
main div{
margin: 60px 0 60px 0;
}
main img {
margin: 10px;
width: 290px;
height: 335px;
box-sizing:border-box;
transition-duration: .4s;
}
main img:hover {
padding: 28px;
background-color: #ddd;
}
main a{
width: 160px;
height: 40px;
display: block;
margin: 0 auto 0 auto;
line-height: 40px;
text-decoration: none;
font-size: 18px;
border: 2px solid #ccc;
color: #ccc;
transition-duration: .4s;
}
main a:hover{
background-color: #222;
color: #fff;
border-color: #222;
}
footer{
background-color:#222;
height: 50px;
color: #999;
text-align: center;
line-height: 50px;
}