forked from ArpanCodeX/PassWordGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (108 loc) · 1.98 KB
/
style.css
File metadata and controls
108 lines (108 loc) · 1.98 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
*{
margin: 0%;
padding: 0%;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
body{
background: #3aafa9;
color: #fff;
}
.container{
margin: 5% auto;
width: 90%;
max-width: 700px;
padding: 0 10px;
}
.display{
width: 100%;
margin-top: 10%;
margin-bottom: 10%;
background: #fff;
color: #333;
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 20px;
border-radius: 5px;
gap: 10px;
flex-wrap: wrap;
}
.container h1{
color: #feffff;
font-weight: 500;
font-size: 45px;
}
.container h1 span{
color: #17252a;
font-weight: 500;
font-size: 45px;
border-bottom: 4px solid #17252a;
padding-bottom: 5px;
}
.display img{
width: 30px;
height: 30px;
cursor: pointer;
}
.display input{
border: 0;
outline: 0;
font-size: 20px;
flex: 1;
min-width: 60%;
background: transparent;
color: #333;
}
.container button img{
width: 28px;
margin-right: 10px;
color: #fff;
}
.container button{
background-color: #17252a;
color: #fff;
font-size: 24px;
font-weight: 300;
display: flex;
align-items: center;
justify-content: center;
padding: 16px 26px;
border-radius: 5px;
cursor: pointer;
border: 0;
outline: 0;
margin-top: 30px;
transition: all 0.5s;
width: 100%;
}
.container button:hover{
box-shadow: 2px 2px 20px #254e584e, 2px 2px 20px #254e5845;
letter-spacing: 0.5px;
}
.container button:active{
letter-spacing: 0px;
box-shadow: none;
}
@media (max-width: 600px){
.container h1,
.container h1 span{
font-size: 32px;
}
.display{
flex-direction: column;
align-items: stretch;
}
.display input{
font-size: 18px;
margin-bottom: 10px;
width: 100%;
}
.display img{
align-self: flex-end;
}
.container button{
font-size: 20px;
padding: 14px 20px;
}
}