-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (116 loc) · 1.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html, body, .wrapper {
height: 100%;
width: 100%;
}
body {
text-align: center;
padding: 0;
margin: 0;
background: /*linear-gradient(-62deg, #ccc, #888)*/ url("img/bg.jpg") no-repeat no-repeat center center scroll;
background-size: cover;
font-family: 'Raleway', cursive;
font-size: 19px;
color: #333;
overflow-y: hidden;
user-select: none;
}
.container {
position: absolute;
top: 15%;
width: 85%;
height: 70%;
left: 7.5%;
box-shadow: 15px 15px 50px rgba(0,0,0, 0.35), -15px -15px 50px rgba(0,0,0, 0.35);
}
.wrapper {
position: relative;
overflow: hidden;
}
.img, .supp-text, .overlay {
position: absolute;
top: 0;
height: 100%;
width: 50%;
}
.img {
/*background: url("img/img-2.jpg") no-repeat no-repeat center center scroll;
background-size: cover;*/
left: 0;
z-index: 1;
transition: all 0.7s ease;
/* -webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px); */
}
/* .img:hover { */
/* transform: scale(1.15);
-webkit-filter: blur(0px);
-moz-filter: blur(0px);
-o-filter: blur(0px);
-ms-filter: blur(0px);
filter: blur(0px); */
/* } */
.supp-text {
right: 0;
background: #fff;
z-index: 2;
}
.overlay {
width: 50%;
z-index: 2;
}
span{
color: #888;
text-transform: uppercase;
}
a, a:visited, a:focus, a:active {
text-decoration: none;
color: #111;
transition: all 0.5s ease;
}
a:hover {
color: #222;
border-bottom: 1px dotted #222;
}
.copy {
bottom: 10px;
left: 0;
width: 100%;
color: #e3e3e3;
position: absolute;
}
@media screen and (max-width: 1000px) {
body {
font-size: 17px;
}
}
@media screen and (max-width: 767px) {
.wrapper {
overflow-y: scroll;
}
.img, .overlay, .supp-text {
height: 50%;
width: 100%;
}
.img, .overlay {
top: 0;
}
.supp-text {
padding-top: 20px;
top: 50%;
height: auto;
}
}
@media (min-width: 1640px) {
body {
font-size: 22px;
}
.supp-text {
padding-top: 5%;
}
.img {
background: url("img/img-2.png") no-repeat no-repeat center center scroll;
}
}