-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (107 loc) · 2.03 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
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@500&family=Lobster&family=Outfit:wght@400;700&display=swap');
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background: #475569;
}
header {
background-color: #fff;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.header-image {
width: 50%;
min-width: 100px;
max-width: 150px;
}
.header-title {
display: flex;
color: #8ec1d6;
font-family: 'Fira Sans', cursive;
justify-content: center;
align-items: center;
}
.links {
display: flex;
justify-content: center;
align-items: center;
}
.links button {
background-color: #8ec1d6;
padding: 0.5rem 2rem;
border: none;
border-radius: 5px;
margin: 2px 1rem;
cursor: pointer;
}
.links button a {
font-size: larger;
text-decoration: none;
font-weight: bold;
color: #475569;
}
.links button:hover {
background-color: rgb(154, 183, 212);
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 2em;
}
.textarea {
width: 50%;
border: none;
min-width: 200px;
font-size: larger;
font-family: 'Fira Sans', sans-serif;
color: black;
padding-top: 2em;
font-weight: 600;
text-align: center;
border-radius: 15px;
letter-spacing: 2px;
resize: none;
background-color: #cbd5e1;
}
textarea:focus {
outline: none;
}
::placeholder {
font-size: larger;
font-family: Fira Sans, cursive;
color: grey;
text-align: center;
}
.translate-button {
background-color: rgb(132, 164, 224);
padding: 0.5rem 2rem;
border: none;
border-radius: 5px;
margin: 20px 1rem;
cursor: pointer;
font-weight: bolder;
font-size: larger;
color: #32435c;
}
.translate-button:hover {
background-color: #fff;
color: #475569;
}
.output-result {
width: 50%;
height: 100px;
min-width: 200px;
font-size: larger;
font-family: 'Outfit', sans-serif;
color: black;
padding: 1rem 0 0 0;
font-weight: 600;
text-align: center;
border-radius: 15px;
letter-spacing: 2px;
background-color: #cbd5e1;
}