-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (65 loc) · 1.38 KB
/
style.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
html {
background: #EB8068;
background: linear-gradient(left top, #EB9B6B, #EB8068) no-repeat;
background: -webkit-linear-gradient(left top, #EB9B6B, #EB8068) no-repeat;
background: -moz-linear-gradient(left top, #EB9B6B, #EB8068) no-repeat;
background: -ms-linear-gradient(left top, #EB9B6B, #EB8068) no-repeat;
background: -o-linear-gradient(left top, #EB9B6B, #EB8068) no-repeat;
}
:not(button) {
margin: 0;
padding: 0;
font: 500 13px "helvetica neue", helvetica, arial, sans-serif;
}
.nav {
margin: 25px 25px 25px 25px;
}
header h1 {
font-size: 250%;
font-weight: 700;
}
header h2 {
font-size: 150%;
font-weight: 700;
}
footer {
height: 150px;
}
.title {
position: relative;
width: 500px;
margin: 20px auto 0;
margin-top: 50px;
font-weight: 700;
padding: 14px 14px;
border: 1px solid #FFED8D;
border-bottom-color: #F5DC7A;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(125,112,33,.23);
background: #FFFADA;
transition: opacity .8s;
}
.resource {
list-style: none;
position: relative;
width: 500px;
margin: 10px auto 0;
padding: 14px 0;
border: 1px solid #FFED8D;
border-bottom-color: #F5DC7A;
border-radius: 4px;
background: #FFF;
transition: opacity .8s;
}
.resource.hidden {
opacity: 0;
}
.resource p {
text-align: center;
color: #1A3547;
}
.resource button {
position: absolute;
right: 11px;
top: 11px;
}