-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (57 loc) · 1.04 KB
/
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
body{
height: 600px;
width: 400px;
}
.center {
display: flex;
justify-content: center; /* for horizontal*/
align-items: center; /* for vertical*/
}
.center_image {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
h1 {
text-align: center;
color: #ff3b3f;
font-family: 'Dosis', sans-serif;
padding: 0px;
margin: 0px;
}
p {
text-align: center;
color: #708090;
font-family: 'Dosis', sans-serif;
font-size: 16px;
}
div {
text-align: center;
}
label {
color: #708090;
font-family: 'Dosis', sans-serif;
}
#add_url {
width: 10px;
}
form.add input[type=text] {
padding: 5px;
font-size: 15px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}
form.add input[type=button] {
width: 20%;
border-radius: 50%;
width: 40px;
padding: 10px;
/* background: #ff3b3f; */
color: white;
border: 1px solid grey;
border-left: none;
cursor: pointer;
}