-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (73 loc) · 1.42 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
@import url('https://fonts.googleapis.com/css2?family=Rubik Microbe&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #115151;
color: #fff;
font-family: "Rubik Microbe" , sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 110vh;
overflow: hidden;
padding: 12px;
}
h2 {
margin: 12px 0 20px;
text-align: center;
}
.container {
background-color: #1AA478;
box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
padding: 21px;
width: 351px;
max-width: 100%;
}
.result-container {
background-color: rgba(0, 0, 0, 0.4);
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
font-size: 19px;
letter-spacing: 3px;
padding: 14px 10px;
height: 52px;
width: 100%;
border-radius: 20px;
}
.result-container #result {
word-wrap: break-word;
max-width: calc(100% - 40px);
}
.result-container .btn {
position: absolute;
top: 7px;
right: 7px;
width: 40px;
height: 40px;
border-radius: 12px;
}
.btn {
border: none;
background-color: #0A5F42;
color: #fff;
font-size: 16px;
padding: 8px 12px;
cursor: pointer;
border-radius: 24px;
}
.btn-large {
display: block;
width: 100%;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 17px 0;
}