forked from tanyagarg2509/taarangana-20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.css
106 lines (91 loc) · 1.88 KB
/
aboutus.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
/* @import url('https://fonts.googleapis.com/css?family=Acme&display=swap'); */
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic);
body, html {
height: 100%;
margin: 0;
font-family: Emilys Candy;
color: #666;
text-align: center;
}
.parallax1 {
background: url('clg1.jpg');
min-height: 100%;
}
.parallax2 {
background: url('clg2.jpg');
min-height: 60%;
}
.parallax1, .parallax2 {
position: relative;
opacity: .75;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
#map {
margin-top: 10px;
width: 200px;
height: 150px;
/*background-color: aqua;
background-color: aqua;*/
}
.heading {
position: absolute;
color: #fff;
font-size: 5em;
font-weight: 900;
bottom: 20px;
width: 100%;
text-transform: uppercas;
letter-spacing: 6px;
text-shadow: 0 0 30px #000;
}
h1 {
font-size: 200%;
text-shadow: 0 0 10px #000;
}
.two-col {
float: left;
width: 42%;
padding: 0 4%;
text-align: left;
/*font-size: 2em;*/
}
section {
overflow: auto;
padding: 50px 80px;
}
.color {
overflow: auto;
padding: 50px 80px;
color: #fff;
background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
background-size: 400%;
position: relative;
animation: bganimation 5s infinite;
}
@media (max-width: 768px) {
.heading {
font-size: 250%;
}
.heading-sm {
font-size: 180%;
}
.two-col {
width: 100%;
padding: 0;
text-align: center;
}
}
@keyframes bganimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}