-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (59 loc) · 1.1 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (59 loc) · 1.1 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
* {
box-sizing: border-box;
}
body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
padding: 10px;
margin: 0;
}
h2 {
margin: 10px 0 20px;
text-align: center;
}
.container {
background-color: crimson;
padding: 20px;
width: 350px;
max-width: 100%;
}
.result_container {
background-color: rgba(0, 0, 0, 0.4);
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
width: 100%;
height: 50px;
}
.btn {
border: none;
background-color: black;
color: white;
font-size: 16px;
padding: 8px 2px;
}
.result_container .btn {
position: absolute;
top: 5px;
right: 5px;
width: 40px;
height: 40px;
font-size: 20px;
}
.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0px;
}
.btn-large {
width: 100%;
display: block;
}