-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
139 lines (119 loc) · 2.29 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
body{
font-family: 'Poppins', sans-serif;
background-color: #efd9b4
}
:lang(ta) {
font-family: 'Pavanam', sans-serif;
}
.button {
background-color: #fd0a54;
border: none;
color: white;
padding: 9px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.button1 {border-radius: 12px;float: right}
.button:hover {background-color: #f57576}
.button:active {
background-color: #fd0a54;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
/* Add a black background color to the top navigation */
.navbar {
background-color: #23192d;
overflow: hidden;
border-radius: 25px;
}
/* Style the links inside the navigation bar */
.navbar a {
float: left ;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a.translate{
float: right;
background-color: #fd0a54;
padding: 14px 16px;
font-size: 16px;
}
/* Change the color of links on hover */
.navbar a:hover {
background-color: #f5ecb7;
color: black;
}
/* Add a color to the active/current link */
.navbar a.active {
background-color: #04AA6D;
color: white;
}
.title{
font-size: 30pt;
margin-left: 5vh;
}
h5{
font-size: 12pt;
margin-left: 5vh;
color:grey
}
h4{
margin-left: 5vh;
}
/*Columns*/
* {
box-sizing: border-box;
}
.para p{
margin-left: 5vh;
padding: 0 20px;
font-size: 15pt
}
/* Float four columns side by side */
.column {
float: left;
width: 50%;
padding: 0 10px;
color:black
}
/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Style the counter cards */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
padding: 16px;
background-color: #f1f1f1;
}
/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
.card a:hover {
background-color: black;
color: white;
}
.footer{
background:#000;
font-weight: bold;
text-align:center;
color: white
}
.footer a{
color: white
}