-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
144 lines (125 loc) · 2.35 KB
/
styles.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
background: whitesmoke;
}
.navbar-dark {
background: #00ccff !important;
color: #38b6ff;
}
.s1:hover{
transform: scale(1.15);
transition: 0.5s;
}
.s2:hover{
transform: scale(1.15);
transition: 0.5s;
}
.s3:hover{
transform: scale(1.15);
transition: 0.5s;
}
.header {
background-image: url(img/bg-header.png);
background-position: center;
color:wheat;
text-align: center;
height: 100vh;
transition: all 0.7s ease 0s;
transform: translateY(0%);
}
.heading {
color: whitesmoke;
font-family: 'Dancing Script', cursive;
position: relative;
font-size: 20vh;
height: 80vh;
}
.header .row {
color: wheat;
margin: 0 0 25px 0 ;
}
.container .row .card {
margin: 50px;
padding: 1px;
border: 5px solid #38b6ff;
}
.footer {
background: rgb(25,25,25);
padding: 1em;
}
.card {
text-align: center;
position: relative;
cursor: pointer;
perspective: 500px;
box-shadow: 0 18px 36px rgba(143, 100, 100, 0.3), 0 14px 12px rgba(0,0,0,0.2);
}
.card img{
width: 250px;
height: 300px;
}
.card .card-body {
width: 100%;
height: 100%;
padding: 5% 8%;
position: absolute;
content: "";
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotateY(90deg);
transform-origin: 50%;
background: linear-gradient(black,grey);
color: aliceblue;
opacity: 0;
transition: all 0.4s ease-in;
}
.card:hover .card-body {
transform: translate(-50%, -50%) rotateY(0deg) scale(1.15);
opacity: 1;
}
.card ul a:visited {
color: #a8a8a8;
}
.splash {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: cornflowerblue;
z-index: 20000000;
color: rgb(64, 163, 180);
text-align: center;
line-height: 300px;
}
.splash img {
width: 100%;
height: 100vh;
}
.splash.display-none{
position: fixed;
opacity: 0;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: cornflowerblue;
z-index: -100;
color: darkblue;
text-align: center;
line-height: 90vh;
transition: all 0.s;
}
@keyframes fadeIn {
to{
opacity: 1;
}
}
.fade-in {
opacity: 0;
animation: fadeIn 2s, ease-in-out forwards;
}
.btn-social-icon:hover {
box-shadow: inset 0 0 0 22px #3A5795;
transform: rotate(360deg) scale(1.35);
transition: 1s;
}