-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
77 lines (68 loc) · 1.3 KB
/
main.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
76
77
html body{
margin: 0;
min-width:100%;
min-height: 100%;
width: 100%;
height: 100%;
color: #efefef;
padding: 0;
font-family: 'Cabin', sans-serif;
line-height:1.5em;
background-image: url("/images/kinegrams.jpg");
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.content:hover {
background-color: rgba(0,0,0,0.75);
}
/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (orientation: landscape){
html body {
font-size: 1.5em;
line-height:1.5em;
}
.content {
max-width:600px;
margin:2em;
}
}
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (orientation: portrait){
html body {
font-size: 2.5em;
line-height:2em;
}
.content {
text-shadow: 0px 0px 25px black;
max-width:100%;
margin:2em;
}
}
a {
color: #efefef;
text-decoration: none;
/* font-size: 1em; */
}
.main-nav-item{
margin-right:2em;
}
a:hover
{
background-color:#efefef;
color:#010101;
text-decoration:none;
cursor:pointer;
}
nav {
padding:2em;
text-transform: lowercase;
}
body > .content:before {
-webkit-filter: blur(12px);
filter: blur(12px);
}
.link {
text-decoration:underline;
}