-
Notifications
You must be signed in to change notification settings - Fork 10
/
essential.css
51 lines (51 loc) · 995 Bytes
/
essential.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
body{
height:4000px;
}
#navigation{
position:fixed;
width:100%;
min-height: 40px; /*- shrunk height */
max-height: 140px; /*- allows strechyness on scroll passed top */
height: 100px; /*- start height */
background:#343434;
}
#navigation li{
display: inline;
}
#navigation li a{
display:inline-block;
width:auto;
margin-left:20px;
font-family:helveticaNeueLight;
font-size:20px;
height: 100px; /*- set same as "start height" */
line-height:100px; /*- set same as "start height" */
}
#nextElementFix{
width:100%;
padding-top:100px; /*- set same as "start height" */
}
/*----------Style------------*/
@font-face{
font-family: helveticaNeueLight;
src:url(Fonts/HelveticaNeue-Light.otf);
}
a{
text-decoration:none;
font-size:24px;
color: white;
}
#memo{
font-family: helveticaNeueLight;
color: black;
background-color:#EFEFEF;
border-radius: 50px;
margin: 75px;
padding: 20px;
float:right;
}
#memo a{
font-family: helveticaNeueLight;
font-size:18px;
color:#FF6BA4;
}