-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
122 lines (107 loc) · 1.98 KB
/
style.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
@font-face{
font-family: unbaron;
src: url(un-baron-prod.ttf);
}
@font-face{
font-family: fmabaya;
src: url(UN-Abhaya-6-110-kern.ttf);
}
body{
color: #fff;
background: #333641;
font-family: fmabaya;
}
.header {
background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #fff, transparent, transparent);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-size: 7vw;
font-family: unbaron;
-webkit-animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
}
@media (max-width: 400px){
.header{
font-size: 2em;
}
}
@-webkit-keyframes reveal {
80% {
letter-spacing: 8px;
}
100% {
background-size: 300% 300%;
}
}
@keyframes reveal {
80% {
letter-spacing: 8px;
}
100% {
background-size: 300% 300%;
}
}
@-webkit-keyframes glow {
40% {
text-shadow: 0 0 8px #fff;
}
}
@keyframes glow {
40% {
text-shadow: 0 0 8px #fff;
}
}
.footer{
font-size: 1em;
margin: auto;
background-color: #3a393e;
color: gray;
text-align: center;
}
.caption {
text-align: center;
color: grey;
text-decoration: none;
}
.btndefault {
border-color: #e7e7e7;
color: white;
width: 100%;
margin-bottom: 5px;
}
.btndefault:hover {
background: #e7e7e7;
color: gray;
}
.thumb{
margin-bottom: 30px;
}
img.zoom {
width: 100%;
height: 200px;
border-radius:5px;
object-fit:cover;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
}
.transition {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
.modal-header {
border-bottom: none;
}
.modal-title {
color:#000;
}
.modal-footer{
display:none;
}
.photo a{
margin:10px;
}