-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (95 loc) · 1.58 KB
/
styles.css
File metadata and controls
110 lines (95 loc) · 1.58 KB
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
.border {
border: 1px solid red;
}
.nav ul {
list-style: none;
background-color: #444;
opacity: 0.9;
text-align: center;
padding: 0;
margin: 0;
}
.nav li {
font-family: 'SF Pro Text', 'Myriad Set Pro', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-size: 1em;
line-height: 40px;
height: 40px;
border-bottom: 1px solid #888;
}
.nav a {
text-decoration: none;
color: #fff;
display: block;
transition: 0.3s background-color;
}
.nav a:hover {
background-color: #005f5f;
}
.nav a.active {
background-color: #fff;
color: #444;
cursor: default;
}
@media screen and (min-width: 600px) {
.nav li {
width: 120px;
/*border-bottom: none;*/
height: 50px;
line-height: 50px;
font-size: 1.2em;
}
/* Option 1 - Display Inline */
.nav li {
display: inline-block;
margin-right: -4px;
}
}
.header img {
height: 500px;
width: 100%;
opacity: 0.8;
}
.container {
position: relative;
}
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.container_12 {
text-align: center;
margin-left: 1.0417%;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: 0.5s ease;
background-color: #008cba;
}
.container .npy {
filter: blur(30px);
}
.container h2 {
position: absolute;
top: 200px;
left: 0;
width: 100%;
}
.container .finished:hover {
/*opacity: 0.8;*/
filter: blur(5px);
}
span {
color: black;
}