forked from uiverse-io/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogariusIV_orange-cobra-86.html
97 lines (89 loc) · 1.96 KB
/
LogariusIV_orange-cobra-86.html
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
<form action="" class="form">
<div class="Group">
<label for="Email">Email</label>
<input placeholder="abc@email.com" id="Email" type="email">
</div>
<div class="Group">
<label for="Password">Password</label>
<input id="Password" type="password">
</div>
<div class="Group">
<button class="btn">Log in</button>
</div>
</form>
<style>
/* From Uiverse.io by LogariusIV - Tags: login, form */
.form {
display: flex;
flex-direction: column;
width: 280px;
height: 350px;
background-color: #FFF;
margin: 0;
box-shadow: -1px 0px 25px 0px #21719369;
padding: 2.25em;
box-sizing: border-box;
border: solid 1px #DDD;
border-radius: 0.5em;
font-family: sans-serif;
font-size: 16px;
font-weight: 400;
}
.form .Group {
margin-bottom: 2em;
}
.form label {
margin: 0 0 10px;
display: block;
font-size: 1.25em;
color: #217093;
font-weight: 600;
font-family: inherit;
}
.form input {
padding: 0.3em 0.5em 0.4em;
background-color: #f3fafd;
border: solid 2px #217093;
border-radius: 4px;
box-sizing: border-box;
width: 100%;
height: 50px;
font-size: 1.3em;
color: #353538;
font-weight: 600;
font-family: inherit;
transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
}
.form input:focus {
outline: none;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
background-color: #edf8fc;
border: solid 2px #4eb8dd;
}
.form input::placeholder {
color: #21719383;
}
.form .btn {
margin: 0;
padding: 0.5em;
background-color: #4eb8dd;
border: none;
border-radius: 4px;
box-sizing: border-box;
box-shadow: none;
width: 100%;
height: 50px;
font-size: 1.4em;
color: #FFF;
font-weight: 600;
font-family: inherit;
transition: transforme 0.1s ease-in-out, background-color 0.2s ease-out;
}
.form .btn:hover {
cursor: pointer;
background-color: #217093;
}
.form .btn:active {
transform: scale(0.98);
}
</style>