-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (100 loc) · 2.12 KB
/
style.css
File metadata and controls
121 lines (100 loc) · 2.12 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
111
112
113
114
115
116
117
118
119
120
121
body {
margin: auto 0;
font-family: Arial;
}
#resolution {
text-align: center;
}
/*.parallax {
background-image: url("./img/logo.png");
background-color: rgb(0, 0, 0);
height: 700px;
background-attachment: fixed;
background-position: center 100px;
background-repeat: no-repeat;
background-size: 40vh;
}*/
.zone {
/*padding:30px 50px;
margin:40px 60px;*/
cursor: pointer;
/*display:inline-block;*/
color: #FFF;
font-size: 2em;
border-radius: 4px;
border: 1px solid #bbb;
transition: all 0.3s linear;
}
.zone:hover {
-webkit-box-shadow:rgba(255,255,255,0.8) 0px 5px 15px, inset rgba(255,255,255,0.15) 0px -10px 20px;
-moz-box-shadow:rgba(255,255,255,0.8) 0px 5px 15px, inset rgba(255,255,255,0.15) 0px -10px 20px;
-o-box-shadow:rgba(255,255,255,0.8) 0px 5px 15px, inset rgba(255,255,255,0.15) 0px -10px 20px;
box-shadow:rgba(255,255,255,0.8) 0px 5px 15px, inset rgba(255,255,255,0.15) 0px -10px 20px;
}
/* NAV */
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.main-nav {
display: flex;
list-style: none;
font-size: 0.7em;
margin: 0;
}
@media only screen and (max-width: 600px) {
.main-nav {
font-size: 0.5em;
padding: 0;
}
#mobile {
height: 30vh;
/*width: 30rem;*/
}
}
.push {
margin-left: auto;
}
li {
padding: 20px;
}
a {
color: #f5f5f6;
text-decoration: none;
}
/* COVER */
.container {
display: flex;
align-items: center;
justify-content: center;
height: 60vh;
}
.cover {
height: 40vh;
/*width: 30rem;*/
}
/* GRID */
.grid-wrapper {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.box > img {
width: 100%;
}
.box {
padding: 20px;
margin: 0px;
}
/* FOOTER */
footer {
text-align: center;
}
/***********************************************************************
* Background Colors
**********************************************************************/
.black {
/*background: #000000;*/ /* Old browsers */
background: linear-gradient(#000000, #2b2b2b); /* W3C */
}