forked from makersacademy/news-summary-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (61 loc) · 1.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
h1 {
display: flex;
font-size: 100px;
justify-content: center;
font-family: Roboto, sans-serif;
}
.search-article {
margin: 5px;
border-radius: 5px;
border: 1px solid black;
box-shadow: none;
}
#search-box {
width: 500px;
height: 50px;
text-align: left;
font-size: 30px;
}
#search-button {
height: 35px;
width: 75px;
font-size: 15px;
background-color: white;
}
#search-button:hover {
background-color: lightgray;
}
.search {
display: flex;
justify-content: center;
margin: 20px;
align-items: center;
margin-bottom: 50px;
}
.article {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
img.thumbnail {
width: 35%;
}
a.headline {
margin: 20px;
font-size: 25px;
}
body {
background-color: lightgray;
}
#main-container {
display: flex;
justify-content: center;
flex-direction: column;
border: 2px solid lightgray;
border-radius: 5px;
margin-left: 75px;
margin-right: 75px;
background-color: white;
padding-top: 50px;
}