-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclub.css
129 lines (121 loc) · 2.33 KB
/
club.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
120
121
122
123
124
125
126
127
128
129
*{
padding: 0;
margin: 0;
box-sizing: border-box;
transition: 0.5s;
font-family: "Century Gothic", sans-serif;
}
.navlist{
width: 100%;
position: fixed;
padding: 5px 10%;
background-color: #110e2b7e;
}
.navlist ul{
display: flex;
list-style: none;
}
.navlist ul li:first-child{
flex: 1;
color: #ffffff;
}
.navlist ul li h4{
font-family: serif;
}
.navlist ul a{
display: block;
margin-left: 20px;
font-family: "Century Gothic", sans-serif;
font-size: 0.9rem;
color: white;
text-decoration: none;
}
.navlist ul a:hover{
color: #ff8800;
font-size: medium;
}
.main-box{
width: 100%;
height: 80vh;
background-image: linear-gradient(#00000042, #000000bb), url();
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
text-align: center;
padding-top: 30vh;
}
.main-box h1{
word-spacing: 8px;
margin-bottom: 15px;
font-family: serif;
}
.main-box p{
font-family: "Century Gothic", sans-serif;
font-size: 14px;
letter-spacing: 1.4px;
margin-bottom: 40px;
}
.main-box button{
padding: 10px;
border: none;
outline: none;
background: none;
border: 1px solid #ff8800;
color: #ffffff;
}
.main-box button:hover{
background: #ff8800;
}
.container{
width: 80%;
margin: auto;
margin-bottom: 30px;
}
.container h2{
color: #ff8800;
text-align: center;
margin: 30px;
font-family: 'Arial Narrow Bold', sans-serif;
letter-spacing: 5px;
}
.container h2::before, .container h2::after{
content: "-----";
letter-spacing: -5px;
font-weight: lighter;
margin: 0 20px 0 10px;
}
.container .column{
width: 100%;
height: auto;
position: relative;
overflow: hidden;
}
.container .column img{
width: 100%;
height: auto;
}
.container .column a:last-child{
position: absolute;
display: block;
width: 100%;
height: 0;
top: 99%;
bottom: 0;
left: 0;
bottom: 0;
background-color: #ff8800c0;
text-align: center;
padding-top: 14vw;
font-size: 3vw;
color: #ffffff;
text-decoration: none;
}
.container .column:hover a:last-child{
height: 100%;
top: 0;
}
.clubs{
display: flex;
justify-content: space-around;
}