-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
125 lines (103 loc) · 1.82 KB
/
about.css
File metadata and controls
125 lines (103 loc) · 1.82 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
body {
background-image: linear-gradient(to bottom , #111 0%, #111 50%, white 50%, white 100%);
font-family: "Times New Roman", Georgia, Garamond;
}
/*navbar start here*/
.nav-custom .actived {
color: #A7171A;
}
.nav-custom .not-active{
color: white;
}
.nav-custom .actived:hover {
color: white;
background-color: #A7171A;
}
.nav-custom .not-active:hover {
color: #A7171A;
background-color: white;
}
.container {
border-bottom: 0.1vw solid #808080;
width: 50%;
margin: 0 auto 1vw auto;
padding-top: 1vw;
}
/*navbar end here*/
.welcome {
padding-bottom: 10vw;
padding-bottom: 0;
}
h1 {
color: white;
text-align: center;
margin-top: 8vw;
}
.data {
margin: 5vw auto 0 auto;
width: 40%;
}
.data img {
display: block;
width: 100%;
height: 30%;
}
.data p {
font-family: "Times New Roman", Times, serif;
}
span {
font-weight: bold;
}
/*footer start here*/
footer {
display: flex;
justify-content: space-between;
border-top: 0.1vw solid grey;
align-items: center;
background-color: #111;
}
/*copyright*/
.watermark {
color: white;
}
/*media here*/
.fa:hover {
opacity: 0.7;
color: #A7171A;
background-color: #E5E4E2;
}
.fa {
padding: 0.7vw 0.7vw;
font-size: 2vw;
width: 3vw;
text-align: center;
text-decoration: none;
margin: 0.8vw 0.8vw;
border-radius: 50%;
color: black;
background-color: #A7171A;
}
/*navbar here*/
#bar {
font-size: 12px;
font-weight: bold;
}
#bar li {
text-align: center;
display: inline-block;
list-style-type: none;
color: white;
text-decoration: none;
padding: 1.1vw 2vw 0 2vw;
}
#bar li a {
color: inherit;
text-decoration: inherit;
}
#bar li:nth-child(odd) {
color: #A7171A;
}
#bar li:hover {
color: #C0C0C0;
}
/*footer ends here*/