-
Notifications
You must be signed in to change notification settings - Fork 0
/
style .css
106 lines (90 loc) · 1.58 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root{
--blue:#1E3A8A;
}
html{
display:flexbox;
font-family: 'Poppins', sans-serif;
}
body{
margin:0px;
}
.content
{
background-image: url("/wallpaper.png");
background-repeat: no-repeat;
border-image-width: 50%;
background-position-x:right;
background-size:center;
padding: 0rem 0 10rem;
}
#btn-translate{
background-color: var(--blue) ;
border: none;
padding: 0.5rem;
border-radius: 0.2rem;
color:white;
margin-bottom: 1rem;
}
.text{
margin:0 5rem;
}
h1
{ background-color: #1E3A8A;
text-align: center;
margin-block-start: 0rem;
margin-block-end: 0rem;
padding:2rem;
color:white;
}
h3{
text-align: right;
margin: 0 2rem 2rem 0;
}
h3>a{
color:var(--blue);
text-decoration: none
}
.end{
background-color: var(--blue);
}
textarea {
width: 62%;
height: 10vh;
display: block;
padding: 1rem;
margin-bottom: 1rem;
font-family: 'Poppins', sans-serif;
font-size: 16px;
}
#output {
border: 1px solid black;
height: 10vh;
width: 60%;
padding: 1rem;
margin-bottom: 1rem;
}
.bottomright {
position: absolute;
bottom: 8px;
right: 16px;
font-size: 18px;
}
.footer{
background-color:#1e3a8a;
padding:1rem 0rem;
text-align: center;
background-size:cover;
color: white;
position:absolute;
bottom:0px;
width:100%;
}
.footer ul{
padding-inline-start: 0px;
}
.link{
text-decoration: none;
color: white;
padding:0 5vh;
}