-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
117 lines (106 loc) · 1.95 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
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap");
.loading-widget{
display: flex;
justify-content: center;
}
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body {
background-color: rgb(27, 187, 236);
/* font-family: "Montserrat", sans-serif; */
font-family: "Nunito", sans-serif;
margin: 0rem;
text-align: center;
}
textarea {
margin: auto;
margin-bottom: 1rem;
display: block;
padding: 1rem;
height: 5vh;
width: 90%;
border-radius: 0.5rem;
}
.header {
background-color: black;
color: #ffffff;
text-align: left;
padding: 2rem;
font-weight: bolder;
font-size: 1.5rem;
}
.signin , .header-right {
text-decoration: none;
right: 20px;
color:#ffffff;
}
.header-right {
position: absolute;
right: 20px;
}
.img {
margin: auto;
display: block;
padding: 2rem;
padding-bottom: 0rem;
max-width: 200px;
}
.head {
margin: auto;
text-align: center;
font-size: 1.5rem;
display: block;
padding: 1rem;
font-weight: bolder;
}
#btn-translate {
margin: auto;
display: block;
width:150px;
border-radius: 5px;
font-size: larger;
font-weight: bold;
padding:5px;
/* bacground-color: */
/* color: white; */
}
#btn-translate:hover{
/* let me try */
/* font-weight: bolder;
color:green */
background-color: #f5b562;
color:black;
}
#txt-output {
border: 1px solid black;
background-color: white;
margin: auto;
margin-bottom: 1rem;
display: block;
padding: 1rem;
height: 10vh;
width: 90%;
border-radius: 0.5rem;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(34, 26, 26);
color: #f5b562;
font-weight: bolder;
text-align: center;
padding: 2rem;
}