-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (77 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (77 loc) · 1.29 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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500&family=Karla:wght@800&display=swap");
@media screen and (min-width: 600px) {
.passwords input {
width: 33%;
}
}
* {
padding: 0;
margin: 0;
}
body {
background-color: #1f2937;
}
.wrapper {
display: flex;
align-items: center;
flex-direction: column;
margin-top: 5%;
}
h1 {
font-family: "Karla", sans-serif;
font-weight: 800;
color: #fff;
}
h1 .h1-red-color {
color: #e11d48;
}
h3 {
font-family: "Inter", sans-serif;
font-weight: 200;
color: #d5d4d8;
padding-top: 3%;
padding-bottom: 6%;
}
.div-button {
display: flex;
width: 52%;
height: 30px;
background-color: #be123c;
border-radius: 6px;
}
.div-button img {
width: 8%;
object-fit: contain;
padding-left: 7%;
}
#button-el {
border: none;
background-color: #be123c;
font-family: "Inter";
color: #fff;
padding-left: 3%;
}
.line {
border: 1px solid #2f3e53;
margin: 35px 0;
width: 55%;
}
.passwords {
display: flex;
flex-wrap: wrap;
max-width: 50%;
column-gap: 10px;
row-gap: 20px;
justify-content: center;
}
.passwords input {
height: 30px;
border-radius: 3px;
border: none;
background-color: #2f3e53;
color: #f43f5e;
text-align: center;
}
.passwords input:focus {
outline: none;
}