forked from LaunchCodeEducation/HTTP-and-Forms-Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (44 loc) · 843 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
body {
line-height: 1.5;
background-color: #c4c3d4;
width: 500px;
color: 302c70;
margin: auto;
font-family: 'Jost', sans-serif;
}
div {
margin: 30px;
padding: 10px;
background-color: #ffffff;
border-radius: 10px;
position:relative;
overflow:hidden;
}
form {
padding-left: 100px;
padding-bottom: 30px;
}
h1 {
font-family: 'Jost', sans-serif;
font-weight: 700;
font-size: 40;
color: #302c70;
text-align: center;
}
button {
border-radius: 7px;
border-width: 0px;
background-color: #5f58cc;
font-family: 'Jost', sans-serif;
padding: 4px;
padding-left: 10px;
padding-right: 10px;
color: #ffffff;
}
#queryWord {
font-family: 'Jost', sans-serif;
width: 200px;
border-radius: 7px;
padding: 5px;
margin-left: -30px;
}