-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
91 lines (81 loc) · 1.64 KB
/
index.css
File metadata and controls
91 lines (81 loc) · 1.64 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
88
89
90
91
body {
margin: 0px auto;
padding: 0px auto;
background: rgb(24, 24, 24);
display: flex;
justify-content: center;
}
.content {
width: 400px;
height: 330px;
box-shadow: 0px 0px 4px 0px rgb(255, 255, 255);
border: none;
border-radius: 2px;
margin: 30px 20px;
background: #1F2937;
padding: 30px 30px;
}
span {
color: rgb(21, 179, 102);
font-size: 40px;
font-weight: bold;
letter-spacing: 2px;
}
.heading {
margin-bottom: -10px;
font-family: 'Karla';
font-style: normal;
font-weight: 800;
font-size: 40px;
line-height: 40px;
letter-spacing: -0.025em;
color: #FFFFFF;
}
.message {
margin-bottom: 40px;
color: #D5D4D8;
font-family: 'Inter';
font-style: normal;
line-height: 28px;
}
button {
background: #10B981;
border: none;
border-radius: 4px;
font-family:'Lucida Sans', 'Lucida Sans Regular';
padding: 6px 10px;
color: white;
box-shadow: 0px 1px 2px rgba(160, 157, 157, 0.084);
}
.line {
border-bottom: 10px;
border: 1px solid #2F3E53;
margin-top: 25px;
margin-bottom: 10px;
}
.input-field {
display: flex;
justify-content: space-around;
align-items: center;
}
input {
background: #273549;
border: none;
border-radius: 4px;
padding: 7px 4px;
font-weight: bold;
letter-spacing: 1px;
text-align: center;
color: rgb(21, 179, 102);
}
.copy-btn {
display: flex;
justify-content: space-around;
padding: 10px 10px;
}
.btn {
background: linear-gradient(pink, green);
color: rgb(253, 253, 253);
background: transparent;
border: 1px solid black;
}