-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (94 loc) · 1.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
background-color: #100f0f;
}
h1 {
color: green;
font-size: 70px;
}
.container {
min-width: 500px;
padding: 30px 20px;
background: #000000;
border-radius: 10px;
margin-top: 50px;
}
.container .input_container {
border: 2px solid green;
background: #ffffffbb;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.container .input_container #input {
width: 100%;
height: 30px;
border-radius: 10px;
background: transparent;
border: none;
outline: none;
padding: 20px 15px;
font-size: 20px;
font-weight: bold;
}
.container .input_container .fa-copy {
width: 20px;
height: 20px;
margin-right: 10px;
cursor: pointer;
opacity: 0.6;
}
.container .input_container .fa-copy:hover {
opacity: 1;
}
.container .row {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #1f1d1d;;
padding: 5px 0;
margin: 10px;
}
.container .row h2 {
color: #00ffffcc;
}
.container .row input[type="checkbox"] {
cursor: pointer;
height: 15px;
width: 15px;
}
.container #btn {
width: 100%;
padding: 10px 0;
border-radius: 10px;
border: none;
font-size: 20px;
font-weight: bold;
color: #fff;
background: green;
margin-top: 15px;
cursor: pointer;
}
.container #btn:hover {
color: #000;
}
.container #btn:active {
transform: scale(0.95);
}
.hide {
display: none;
}