-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (99 loc) · 2.17 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
108
109
110
111
112
113
114
115
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*
background color - #1F2937
div background color - #273549
text - white
green text and box - #10B981
other text - medium gray
*/
body {
background-color: #1F2937;
color: white;
font-family: 'Karla', sans-serif;
}
.inner-box {
background-color: #273549;
border-radius: 10px;
height: 300px;
width: 300px;
padding: 30px;
box-shadow: 4px 5px 7px -1px rgba(0,0,0,0.37);
-webkit-box-shadow: 5px 6px 8px -1px rgba(0,0,0,0.37);
-moz-box-shadow: 5px 6px 8px -1px rgba(0,0,0,0.37);
}
.outer-box {
height: 100vh;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
.green-title {
color: #10B981;
}
.title {
font-weight: 800;
}
.text-body {
color: #D1D5DB;
font-weight: 200;
margin: 0 0 15px 0;
font-size: .9rem;
}
hr {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
margin: 0 0 15px 0;
}
#generate-btn {
background-color: #10B981;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
}
#generate-btn:hover {
transform: scale(1.01);
/* box-shadow: 0 6px 4px rgb(31, 31, 31); */
box-shadow: 5px 6px 8px -1px rgba(24, 24, 24, 0.176);
-webkit-box-shadow: 5px 6px 8px -1px rgba(0,0,0,0.37);
-moz-box-shadow: 5px 6px 8px -1px rgba(0,0,0,0.37);
}
#generate-btn:active {
transform:translateY(2px);
box-shadow: 0 0 0;
outline: 0;
}
.input-btn {
display: flex;
margin: 1rem 0;
min-width: 75%;
border: none;
border-radius: 5px;
fill: none;
background: transparent;
background-color: #3a4f6d;
color: #10B981;
font-size: 1.2rem;
height: 2.5rem;
box-shadow: 5px 6px 5px 0px rgba(49, 49, 49, 0.34);
-webkit-box-shadow: 5px 6px 5px 0px rgba(49, 49, 49, 0.34);
-moz-box-shadow: 5px 6px 5px 0px rgba(49, 49, 49, 0.34);
}
.input-btn:active {
box-shadow: 0px 0px 3px 4px rgba(255,255,255, 0.3);
}
/* .input-btn:focus {
outline: none;
} */
#password-field {
padding: .5rem .9rem;
font-weight: 200;
}