-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnixy.css
More file actions
203 lines (189 loc) · 6.25 KB
/
nixy.css
File metadata and controls
203 lines (189 loc) · 6.25 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
* {
font-family: 'Roboto', sans-serif;
font-weight: 100;
}
/* MAIN CONTENT */
.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
/* All boxs position width and height */
.box {
width: 345px;
height: 540px;
margin: 10px;
border-radius: 5px;
-webkit-transition: 200ms ease-in-out;
-o-transition: 200ms ease-in-out;
transition: 200ms ease-in-out;
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
box-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.box:hover {
font-size: 19px;
-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.7);
box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
/* BOXES END */
/* ACTORS | SINGERS | */
.member {
width: 100%;
text-align: center;
margin-top: 40px ;
}
.member img {
height: 180px;
width: 180px;
border-radius: 100px;
-webkit-transition: 300ms ease-in-out;
-o-transition: 300ms ease-in-out;
transition: 300ms ease-in-out;
-webkit-box-shadow: 0 0 50px rgba(0,0,0,0.4);
box-shadow: 0 0 50px rgba(0,0,0,0.4);
}
.member img:hover {
-webkit-box-shadow: 0 0 50px rgba(255,255,255,0.2);
box-shadow: 0 0 50px rgba(255,255,255,0.2);
}
.member h1 {
color: #fff;
font-weight: 300;
font-size: 29px;
letter-spacing: 3px;
}
.member h2 {
color: #fff;
margin-top: 10px;
font-weight: 100;
}
.member button {
color: #fff;
width: 40%;
border: none;
padding: 13px;
outline: none;
font-size: 15px;
margin-top: 10px;
letter-spacing: 2px;
border-radius: 4px;
-webkit-transition: 300ms ease-in-out;
-o-transition: 300ms ease-in-out;
transition: 300ms ease-in-out;
background: rgba(255,255,255,0.2);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.member button:hover {
background: rgba(255,255,255,0.4);
-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.3);
box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
/* ACTORS | SINGERS | END */
/* FAVS START */
.favs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 40px;
-ms-flex-item-align: center;
align-self: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.favs button {
margin: 10px;
width: 20%;
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.favs button:hover {
-webkit-box-shadow: 0 0 50px rgba(255,255,255,0.2);
box-shadow: 0 0 50px rgba(255,255,255,0.2);
}
.favs .fas {
font-size: 17px;
}
/* FAVS end */
/* background gradient */
.p2 {
background: #f953c6; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #b91d73, #f953c6); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#b91d73), to(#f953c6));
background: -webkit-linear-gradient(left, #b91d73, #f953c6);
background: -o-linear-gradient(left, #b91d73, #f953c6);
background: linear-gradient(to right, #b91d73, #f953c6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.p3 {
background: #f857a6; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff5858, #f857a6); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#ff5858), to(#f857a6));
background: -webkit-linear-gradient(left, #ff5858, #f857a6);
background: -o-linear-gradient(left, #ff5858, #f857a6);
background: linear-gradient(to right, #ff5858, #f857a6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.p4 {
background: #AA076B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #61045F, #AA076B); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#61045F), to(#AA076B));
background: -webkit-linear-gradient(left, #61045F, #AA076B);
background: -o-linear-gradient(left, #61045F, #AA076B);
background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.p5 {
background: #7F00FF; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E100FF, #7F00FF); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#E100FF), to(#7F00FF));
background: -webkit-linear-gradient(left, #E100FF, #7F00FF);
background: -o-linear-gradient(left, #E100FF, #7F00FF);
background: linear-gradient(to right, #E100FF, #7F00FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.p6 {
background: #ee0979; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff6a00, #ee0979); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
background: -webkit-linear-gradient(left, #ff6a00, #ee0979);
background: -o-linear-gradient(left, #ff6a00, #ee0979);
background: linear-gradient(to right, #ff6a00, #ee0979); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.p7 {
background: #834d9b; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #d04ed6, #834d9b); /* Chrome 10-25, Safari 5.1-6 */
background: -webkit-gradient(linear, left top, right top, from(#d04ed6), to(#834d9b));
background: -webkit-linear-gradient(left, #d04ed6, #834d9b);
background: -o-linear-gradient(left, #d04ed6, #834d9b);
background: linear-gradient(to right, #d04ed6, #834d9b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* FOLLOW*/
.Follow { background:url("https://pbs.twimg.com/profile_images/959092900708544512/v4Db9QRv_bigger.jpg")no-repeat center / contain;
width: 50px;
height: 50px;
bottom: 9px;
right: 20px;
display:block;
position:fixed;
border-radius:50%;
z-index:999;
animation: rotation 10s infinite linear;
}
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(359deg);
}
}