-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (41 loc) · 846 Bytes
/
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
body {
background: #e2debd;
color: #b3aca7;
}
header {
position: relative;
margin: 100px 0 25px 0;
font-size: 2.3em;
text-align: center;
letter-spacing: 7px;
}
.general {
position: relative;
width: 500px;
margin: 50px auto 100px auto;
}
input {
position: relative;
height: 50px;
width: 470px;
padding: 0px 15px 0px 15px;
transition: 0.4s;
background: transparent;
color: 726659;
border: solid 1px #b3aca7;
}
input:hover {
background: #b3aca7;
color: #e2debd;
}
#submit {
width: 502px;
transition: 0.3s;
letter-spacing: 3px;
}
#submit:hover {
border-color: black;
border-width: 2px;
background: #999900;
color: #333300;
}