-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
107 lines (89 loc) · 1.54 KB
/
popup.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
.poppins-extralight {
font-family: "Poppins", serif;
font-weight: 200;
font-style: normal;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
label {
display: block;
margin-top: 10px;
}
input[type="number"] {
width: 100%;
padding: 5px;
margin-top: 5px;
height: 25px;
border: 2px #818CF8 solid;
border-radius: 5px;
background: #ffffff;
}
button {
padding: 10px;
background: #007bff;
border: none;
color: white;
cursor: pointer;
margin-top: 20px;
}
button:hover {
background: #0056b3;
}
#result {
margin-top: 20px;
}
#password {
width: calc(100% - 30px);
padding: 5px;
border: 1px solid #ddd;
margin-right: 10px;
}
/* input */
.coolinput {
display: flex;
flex-direction: column;
width: fit-content;
position: static;
max-width: 500px;
min-width: 300px;
}
.coolinput label.text {
font-size: 0.75rem;
color: #818CF8;
font-weight: 700;
position: relative;
top: 0.5rem;
margin: 0 0 0 7px;
padding: 0 3px;
background: #ffffff;
width: fit-content;
}
.coolinput input[type=text].input {
padding: 11px 10px;
font-size: 0.75rem;
border: 2px #818CF8 solid;
border-radius: 5px;
background: #ffffff;
height: 25px;
}
.coolinput input[type=text].input:focus {
outline: none;
}