-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainmenu.css
More file actions
118 lines (116 loc) · 2.02 KB
/
mainmenu.css
File metadata and controls
118 lines (116 loc) · 2.02 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
#home {
position: absolute;
width: 1920px;
height: 1080px;
background-color: #000000;
overflow: hidden;
--web-view-name: home;
--web-view-id: home;
--web-scale-on-resize: true;
--web-enable-deep-linking: true;
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#india {
position: absolute;
width: 1920px;
height: 1080px;
opacity: 40%;
overflow: visible;
}
.logo {
left: 30px;
top: 930px;
width: 270px;
position: absolute;
overflow: visible;
}
.row {
position: absolute;
display: flex;
left: 20px;
width: 85%;
justify-content: space-between;
}
.button {
position: absolute;
overflow: visible;
display: inline-block;
width: 250px;
height: 250px;
top: 400px;
padding: 20px;
border-radius: 50%;
text-align: center;
font-family: 'Poppins', sans-serif;
font-weight: bold;
font-size: 33px;
color: #FFFFFF;
}
.missions {
background-color: #768a55;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: missions.html;
cursor: pointer;
}
.impact {
background-color: #be2141;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: impact.html;
cursor: pointer;
}
.updates {
background-color: #514235;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: updates.html;
cursor: pointer;
}
.pray {
background-color: #008994;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: pray1.html;
cursor: pointer;
}
.support {
background-color: #eb951a;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: support.html;
cursor: pointer;
}
.scripture {
background-color: #707070;
animation: fadein 1s;
--web-action-type: page;
--web-action-target: scrip1.html;
cursor: pointer;
}
.praying {
position: absolute;
overflow: visible;
left: 1340px;
top: 970px;
font-family: 'Poppins', sans-serif;
font-size: 36px;
color: white;
}
@keyframes scroll {
0% { transform: translateY(100%); }
100% { transform: translateY(-100%); }
}