-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (67 loc) · 1.36 KB
/
Copy pathmain.css
File metadata and controls
69 lines (67 loc) · 1.36 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
body{
padding:0;
margin: 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
.wrap{
height: 100vh;
padding: 0 200px;
background: aliceblue;
display:flex;
flex-direction: row;
align-items: center;
text-align: center;
}
.wrap div{
transition: 150ms all linear;
height: 500px;
padding-top: 20px;
background-color: white;
flex-grow: 2;
border-radius: 3px;
}
.wrap div:hover{
box-shadow: 0 0 50px #e3e3e3;
}
.wrap div:first-child{
border-right: 1px solid #e3e3e3;
}
.wrap div input {
transition: 550ms all linear;
}
.wrap div input[type="text"], .wrap div input[type="password"], .wrap div input[type="email"]{
padding: 20px;
width: 80%;
border: 0;
border-radius: 3px;
}
.wrap div input:focus{
outline: 0;
border: 1px solid #e3e3e3;
}
.wrap div input[type="submit"]{
padding: 10px 30px;
border: 0;
border: 1px solid #e3e3e3;
background-color: aliceblue;
cursor: pointer;
border-radius: 3px;
}
.wrap div input[type="submit"]:hover{
background-color: azure
}
.status {
padding: 20px 0;
text-align: center;
border-radius: 3px;
}
.fail {
background-color: plum;
color: white;
border-bottom: 1px solid red;
}
.success{
background-color: lightgreen;
color: white;
border-bottom: 1px solid darkgreen;
}