-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
171 lines (146 loc) · 3.57 KB
/
style.css
File metadata and controls
171 lines (146 loc) · 3.57 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
/*Body*/
body {
background : #2C3E50;
background : rgba(44, 62, 80, 1);
}
/*Coming Soon*/
h1.cs {
position: absolute;
text-align: center;
top: 40%;
width: 100%;
font-family: 'Montserrat', sans-serif;
font-size : 41px;
color : #2980BA;
color : rgb(41, 128, 186);
overflow: hidden;
-webkit-transition: 0.3s all;
transition: 0.3s all;
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
span.peroid {
color : #E64C3C;
color : rgb(230, 76, 60);
text-align: center;
top: 50%;
overflow: hidden;
-webkit-transition: 0.3s all;
transition: 0.3s all;
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
h1.cs:hover {
-webkit-transform: scale(1.0f5,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
color : #2980BA;
color : rgb(41, 128, 186);
}
span.peroid:hover {
-webkit-transform: scale(1.0f5,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
color : #E64C3C;
}
/*InfiniteDrop Media*/
h1.idm {
position: absolute;
text-align: center;
top: 33%;
width: 100%;
font-family: 'Montserrat', sans-serif;
font-size : 41px;
color : #2980BA;
color : rgb(41, 128, 186);
overflow: hidden;
-webkit-transition: 0.3s all;
transition: 0.3s all;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
span.peroididm {
color : #E64C3C;
color : rgb(230, 76, 60);
text-align: center;
top: 50%;
overflow: hidden;
-webkit-transition: 0.3s all;
transition: 0.3s all;
}
h1.idm:hover {
-webkit-transform: scale(1.0f5,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
}
span.peroididm:hover {
-webkit-transform: scale(1.0f5,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
}
/*Ribbon*/
.ribbon {
font-size: 16px !important;
font-family: 'Montserrat', sans-serif;
/* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */
width: 50%;
position: relative;
background: #2980BA;
color: #fff;
text-align: center;
padding: 1em 2em; /* Adjust to suit */
margin: 2em auto 3em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */
}
.ribbon:before, .ribbon:after {
content: "";
position: absolute;
display: block;
bottom: -1em;
border: 1.5em solid #E64C3C;
z-index: -1;
}
.ribbon:before {
left: -2em;
border-right-width: 1.5em;
border-left-color: transparent;
}
.ribbon:after {
right: -2em;
border-left-width: 1.5em;
border-right-color: transparent;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
content: "";
position: absolute;
display: block;
border-style: solid;
border-color: #2C4E55 transparent transparent transparent;
bottom: -1em;
}
.ribbon .ribbon-content:before {
left: 0;
border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
right: 0;
border-width: 1em 1em 0 0;
}
/*Coming Later This Month (.cltm)*/
h1.cltm {
position: absolute;
text-align: center;
top: 80%;
width: 100%;
font-family: 'Droid Sans', sans-serif;
color : #D3D3D3;
font-size: 20px;
overflow: hidden;
-webkit-transition: 0.3s all;
transition: 0.3s all;
}
h1.cltm:hover {
-webkit-transform: scale(1.0f5,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
text-shadow: 0 0 5px rgba(0,0,0,0.5);
color : #2980BA
}