-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (118 loc) · 1.9 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
117
118
119
html,
body {
height: 100%;
}
body,
.page-template-template-layout-portfolio-php .site
{
background-color: rgb(255, 247, 252);
}
input {
font-family: "Quicksand";
}
#intro {
position: relative;
height: 100%;
overflow: hidden;
z-index: 1;
}
#intro::after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
}
#intro img {
display: block;
position: absolute;
left: 50%;
transform: translateX(-50%);
min-width: 100%;
min-height: 100%;
}
#intro .content {
text-align: center;
position: absolute;
top: 30%;
left: 0;
right: 0;
overflow: hidden;
z-index: 5;
color: #fff;
}
#intro .content h1 {
margin: 20px 0;
font-size: 4.5em;
font-weight: 300;
}
#intro .content h2 {
padding: 0;
border: none;
}
#intro .content h3 {
font-size: 1.5em;
font-weight: 300;
}
#intro .content .socials {
padding: 35px 0;
}
#intro .content .socials a {
color: #fff;
display: inline-block;
font-size: 1.2em;
padding: 10px;
width: 45px;
height: 45px;
text-align: center;
line-height: 1.25;
border: 1px solid #fff;
border-radius: 100%;
margin: 0 10px;
transition: all 0.15s linear;
transform: scale(1);
}
#intro .content .socials a:hover {
color: #ccf;
border: 1px solid #ccf;
transform: scale(1.5);
}
section {
margin-bottom: 25px;
}
section h2 {
text-align: center;
line-height: 1;
padding-bottom: 10px;
border-bottom: 2px solid #ccf;
}
.go-down{
text-align: center;
position: absolute;
z-index: 10;
bottom: 25px;
left: 0;
right: 0 ;
}
.go-down .mouse{
display:inline-block;
width: 30px;
height: 50px;
border: 2px solid #fff;
border-radius: 15px;
}
.go-down .mouse::after{
content: "";
display: block;
position: absolute;
border-radius: 100%;
width: 1px;
height: 1px;
border: 4px solid #fff;
left: 50%;
margin-left: -4px;
top: 10px;
}