-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
70 lines (61 loc) · 1.23 KB
/
form.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
@import url('https://fonts.googleapis.com/css?family=Bubblegum+Sans');
h1 {
font-size:250px;
}
html {
font-family: 'Bubblegum Sans';
position:float;
}
form {
left: 65%;
top: 70%;
margin-left: -20%;
position: absolute;
margin-top: -25%;
font-size:25px;
}
form input {
font-family: 'Bubblegum Sans';
border: none;
border-bottom: 1px solid;
background:transparent;
outline:none;
box-sizing: border-box;
width:150px;
transition: width .5s ease, background-color .5s ease;
opacity: 0.3;
font-size:15px;
}
form select {
border: none;
border-bottom: 1px solid;
background:transparent;
outline: none;
box-sizing: content-box;
width:150px;
transition: width .5s ease, background-color .5s ease;
opacity: 0.3;
font-size:15px;
}
form input:hover, form input:focus {
border-bottom-color:lightsalmon;
width: 250px;
opacity: 1;
font-size: 20px;
font-family: 'Bubblegum Sans';
}
form select:hover, form select:focus {
border-bottom-color:lightsalmon;
width: 250px;
opacity: 1;
font-size: 20px;
font-family: 'Bubblegum Sans';
}
input::-webkit-input-placeholder {
font-size: 15px;
}
form button {
font-family: 'Bubblegum Sans';
font-size: 22px;
border-bottom:1px solid;
}