-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (61 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (61 loc) · 1.19 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
*{
margin: 0;padding: 0;
}
body{
background-color: #006400;
display:flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
form {
background-color: #CD0000;
padding: 20px;
display: inline-flex;
flex-direction: column;
align-items: center;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0);
width: 300px;
height: 400px;
}
form h2{
margin-top: 20px;
font-size: 2.5rem;
color: #006400;
}
form input{
border: none;
background: none;
text-align: center;
outline: none;
padding: 10px;
margin: 20px;
color: #006400;
height: 30px;
width: 70%;
border-radius: 40px;
transition: 0.2s ease-in;
}
form input[type="text"],
form input[type="password"]
form input[type="nickname"]{
border: solid 2px #006400;
}
form button[class="submit"]{
border: solid 2px #006400;
box-sizing: border-box;
height: 50px;
width: 50%;
cursor: pointer;
}
form input[type="text"]:focus,
form input[type="nickname"]:focus,
form input[type="password"]:focus {
width: 80%;
border: solid 2px #006400;
}
button class[type="submit"]:hover{
background: white;
color: black;
}