-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (49 loc) · 1 KB
/
Copy pathstyles.css
File metadata and controls
49 lines (49 loc) · 1 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
html {
background-color: LightSkyBlue;
}
body {
max-width: 30em;
margin: 6em auto 2em;
font-family: 'Open Sans', sans-serif;
line-height: 1.5em;
background-color: MintCream;
padding: 0 6% 2em;
box-shadow: 0 0 40px rgba(0,0,0,.1),
3px 2px 10px rgba(0,0,0,.15);
border-radius:4px;
}
h1 {
font-size: 2.5em;
line-height: 1.1em;
font-weight: bold;
color: #333;
position: relative;
top:-1.4em;
text-shadow:1px 0px 0px rgba(0,0,0,.6)
}
p {
margin-bottom:1em;
color: slategrey;
}
hr {
border: none;
border-top: 1px solid rgba(255,255,255,.3);
border-bottom: 1px solid rgba(0,0,0,.08);
margin: 2.2em 0;
position: relative;
}
hr:before,hr:after {
content: '';
position: absolute;
bottom:0px;
height: 5em;
width: 100%;
background: radial-gradient(ellipse at bottom, rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 70%);
z-index:0;
}
hr:after {
top:0px;
bottom:auto;
height: 1.5em;
background: radial-gradient(ellipse at top, rgba(0,0,0,0.06) 0%,rgba(0,0,0,0) 70%);
}