-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (70 loc) · 1.25 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
67
68
69
70
71
72
73
74
75
76
77
*{
box-sizing: border-box;
font-size: 100%;
}
html{
font-family: 'HomaRegular';
font-size:16px;
}
body{
background-color: #333E50;
}
.container{
width: 70%;
margin: 100px auto;
color:#FFF;
}
.input-container{
position: relative;
background-color: #646d7c;
margin-bottom: 10px;
border-radius: 5px;
height: 50px;
padding: 10px;
clear: both;
}
#form{
padding: 0% 30%;
}
#form input{
display: inline;
float: left;
}
#form label{
position: absolute;
float: left;
font-size: 1.1rem;
font-weight: 300;
margin-top: -2px;
}
input {
height: 25px;
width: 85%;
background-color: #646d7c;
border: none;
margin-top:2px;
color: #959ca6;
}
input:focus {
border:none;
outline: none;
}
button[type="submit"]{
font-family: 'HomaRegular';
background-color: #D94255;
border: none;
color: #FFF;
width: 100%;
padding: 10px 50px;
margin-top: 5px;
border-radius: 5px;
cursor: pointer;
}
::placeholder{
color:#959ca6;
font-family: 'HomaRegular';
font-size: 1.1rem;
}
.container-title{
text-align: center;
}