-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (78 loc) · 1.5 KB
/
style.css
File metadata and controls
87 lines (78 loc) · 1.5 KB
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
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: black;
font-family: 'Manrope', sans-serif;
}
.container {
color: white;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-evenly;
min-height: 90vh;
align-items: center;
padding: 2rem;
}
h1 {
font-size: 3rem;
font-weight: 700;
max-width: 45rem;
text-align: center;
}
label {
display: block;
margin-bottom: 10px;
text-align: center;
}
input[type="text"] {
border: 1px solid hsla(0, 0%, 100%, .1);
background-color: #ffffff0d;
border-radius: 8px 0 0 8px;
padding: 15px;
position: relative;
min-width: 20rem;
max-width: 25rem;
will-change: transform;
overflow: auto;
outline: none;
resize: none;
font-size: 18px;
letter-spacing: 0rem;
line-height: 1.6em;
text-align: start;
color: #fff;
text-decoration: none;
text-transform: none;
margin: 20px 0;
}
button {
line-height: inherit;
background: transparent;
border-radius: 0 8px 8px 0;
border: 1px solid #ecba00;
padding: 1em 1.2em;
font-size: 1em;
font-weight: 700;
font-family: inherit;
cursor: pointer;
color: #ecba00;
transition: .3s ease-in-out;
}
.result {
margin-top: 20px;
text-align: center;
}
.result p {
margin: 5px 0;
font-size: 2rem;
font-weight: 600;
margin-bottom: 1rem;
max-width: 45rem;
text-align: center;
}
.or {
color: #ecba00;
}