-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
131 lines (116 loc) · 2.16 KB
/
styles.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
:root {
--background: #030204;
--surface: #2b2a2b;
--text-color: #f5f1f9;
--primary-color: #779bb1;
--accent-color: #67a8a0;
--border-color: #515151;
}
* {
margin: 0;
padding: 0;
}
body {
font-family: "Ubuntu Mono", monospace;
font-weight: 400;
font-style: normal;
background-color: var(--background);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: var(--text-color);
}
header {
width: 100vw;
color: var(--text-color);
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid var(--border-color);
}
main {
padding: 10vw;
padding-top: 5vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
section {
background-color: var(--surface);
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 5px;
width: 100%;
}
h1 {
font-size: 1.72rem;
margin: 2%;
color: var(--text-color);
}
h2 {
font-size: 1.24rem;
color: var(--text-color);
}
.result-button {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
width: 100%;
border: 1px solid var(--border-color);
margin: 10px auto;
background-color: var(--primary-color);
color: var(--text-color);
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
}
.action-button {
background-color: var(--accent-color);
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
width: 100%;
transition:
background-color 0.3s,
color 0.3s;
font-size: 1rem;
}
.divider {
width: 100%;
border-bottom: 2px solid var(--border-color);
margin: 4vh 0;
background-color: #151121;
}
.input {
width: calc(100% - 20px);
padding: 10px;
font-size: 1rem;
border: 1px solid var(--border-color);
border-radius: 5px;
margin: 10px 0;
background-color: #151121;
color: var(--text-color);
}
.result-text,
.icons {
display: inline-flex;
align-items: center;
height: 100%;
}
.icons {
max-height: 95%;
padding: 0;
margin: 0;
font-size: 1em;
}
.result-text {
width: 100%;
font-size: 1rem;
justify-content: center;
}