-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (121 loc) · 2.37 KB
/
style.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
145
body {
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
animation: colorChange 5s infinite alternate;
}
@keyframes colorChange {
0% {
background-color: #f0f0f0;
}
50% {
background-color: #87ceeb;
}
100% {
background-color: #f0f0f0;
}
}
.container-fluid {
margin: 0 auto;
max-width: 1200px;
}
#hindiTitle {
margin-left: 50px;
color: #333;
}
.converter-container {
background-color: #f8f8f8;
padding: 20px;
border-radius: 8px;
margin: 20px auto;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
width: 80%;
}
input[type="text"] {
width: 100%;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
#hindiOutput {
font-family: 'Arial Unicode MS', sans-serif;
}
label {
margin-bottom: 10px;
}
.output-container {
margin-top: 20px;
margin-left: 10px;
}
.select-option {
display: inline-block;
padding: 10px 15px;
text-decoration: none;
color: #fff;
background-color: #4CAF50; /* Green color for the button */
border-radius: 5px;
transition: background-color 0.3s ease;
}
.select-option:hover {
background-color: #45a049; /* Darker green color on hover */
}
/* Additional Text Styles */
.support-text {
color: #333;
font-weight: bold;
}
.contact-text {
color: #555;
margin-top: 10px;
}
.click-here {
color: #007bff; /* Blue color for links */
cursor: pointer;
}
/* Animation for additional items */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Additional Items Design */
.additional-items {
margin-top: 20px;
text-align: center;
animation: fadeIn 1s ease;
}
.additional-items a {
margin: 0 10px;
color: #007bff;
text-decoration: none;
font-weight: bold;
}
/* ... (previous styles) ... */
/* Additional Items Design */
.additional-items {
margin-top: 20px;
text-align: center;
animation: fadeIn 1s ease;
}
.additional-items a {
margin: 0 10px;
color: #007bff;
text-decoration: none;
font-weight: bold;
}
/* New section for Other Languages */
.other-languages {
margin-top: 20px;
}
.other-languages h4 {
color: #333;
}
.other-languages a {
color: #007bff;
text-decoration: none;
margin-right: 10px;
}
/* ... (additional styles for other items) ... */