-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (65 loc) · 1.18 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
html,body{
margin: 0;
padding: 0;
}
body{
font-family: 'YuGothic',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.contents{
width: 620px;
margin: 0 auto;
}
.form-title,.thanks-msg{
font-size: 24px;
margin-top: 98px;
}
.form-title-02{
margin-bottom: 22px;
}
.form-contents{
margin-top: 44px;
display: flex;
justify-content: center;
flex-flow: column nowrap;
}
.form-item{
margin-bottom: 12px;
}
input,button,textarea,select{
appearance: none;
}
input[type="text"]{
height: 22px;
border-radius: 4px;
border: 0;
}
textarea{
border-radius: 4px;
border: 0;
}
input[type="text"]:focus,
textarea:focus{
box-shadow: 0 0 7px #E9858F;
border: 1px solid #E9858F;
}
select{
outline: none;
text-indent: 0.01px;
text-overflow: '';
background: none transparent;
vertical-align: middle;
font-size: inherit;
color: inherit;
appearance: button;
}
select option{
background-color: #fff;
color: #333;
}
.btn{
width: 50%;
margin: 22px auto;
height: 60px;
background-color: #85C1E9;
border-radius: 4px;
}