-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy03_backToTop.css
More file actions
14 lines (14 loc) · 1.24 KB
/
my03_backToTop.css
File metadata and controls
14 lines (14 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
* {box-sizing: border-box; -webkit-font-smoothing: antialised;}
body {background-color: #313944; padding: 5em 20em;}
h1 {color: #fff; font-family: 'Cormorant Infant'; font-size: 72px; font-weight: 700; line-height: 72px; letter-spacing: -1px; margin-bottom: 48px; text-align: center;}
h1:after {color: #1fcfcb; display: block; content: '. . .'; font-size: 26px; line-height: 24px; height: 24px; margin: 48px auto;}
h2 {color: #fff; font-family: 'Cormorant Infant'; font-size: 54px; font-weight: 700; line-height: 72px; letter-spacing: -1px; margin-bottom: 48px; text-align: center;}
p {color: #bbc8d8; font-family: 'Lato'; font-size: 22px; font-weight: 500; line-height: 36px; margin-bottom: 36px; text-align: center; }
a {color: #1fcfcb; font-family: 'Lato'; }
a:hover {color: #fff;}
#back-to-top {
position: fixed; bottom: 3em; right: 3em; background-color: rgba(255, 255, 255, .9); color: #313943; border: none; border-radius: 5px; padding: 1em; text-transform: uppercase;
cursor: pointer; font-weight: 700; box-shadow: 0 0 2em 0 rgba(0, 0, 0, .25); transition: all .3s ease-in-out; display: inline-block; opacity: 0; text-decoration: none; font-size: .75em;
}
#back-to-top:hover {background-color: #fff; padding: 1em 3em;}
#back-to-top.visible {opacity: 1;}