-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (64 loc) · 888 Bytes
/
styles.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
@font-face{
font-family: montserra;
src: url(montserra.ttf);
}
header{
border: 1px solid #ddd;
margin: 3px 0px;
text-align: center;
}
header p{
font-family: montserra;
color: #aaa;
}
.container{
border: 1px solid #ddd;
padding: 15px;
box-sizing: border-box;
}
select{
outline: none;
border: none;
position: absolute;
right: 15px;
width: 10%;
color: white;
background-color: steelblue;
padding: 5px;
}
label{
display: block;
margin: 5px;
font-family: montserra;
color: #aaa;
}
input{
width: 15%;
margin: 5px;
padding: 3px;
font-family: montserra;
}
#submitBtn{
outline: none;
border: none;
padding: 7px;
font-family: montserra;
color: white;
background-color: steelblue;
}
div p{
border: 1px solid #ddd;
width: 45%;
height: 55px;
padding: 5px;
font-family: montserra;
}
footer{
border: 1px solid #ddd;
margin: 3px 0px;
text-align: center;
}
footer p{
font-family: montserra;
color: #aaa;
}