-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
82 lines (68 loc) · 1.32 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
* {
margin: 0;
overflow-x: 0;
}
.title {
text-align: center;
font-size: 32px;
font-family: Consolas;
margin-top: 10vh;
text-shadow: 2px 4px 8px rgb(168, 168, 168);
}
.lang_container {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
margin-top: 8vh;
}
.lang_container h1 {
font: 18px;
font-family: Consolas;
}
.lang_container input {
border: 0;
outline: 0;
border-bottom: 1px solid #121212;
width: 100px;
}
.text_container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 5vh;
gap : 2vh;
}
.text_container h1 {
font-size: 18px;
font-family: Consolas;
}
.text_container input {
border: 0;
outline: 0;
border-bottom: 1px solid #121212;
}
.text_container a {
text-decoration: underline;
margin-top: 4vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-style: italic;
color: #121212;
}
.result_container {
display: flex;
gap: 20vh;
justify-content: center;
align-items: center;
font-family: Consolas;
margin-top: 8vh;
}
.result_ans_container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
word-wrap: break-word;
width: 200px;
}