-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyle.css
107 lines (93 loc) · 2.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* {
margin: 0;
padding: 0;
box-sizing: content-box;
}
body {
width: 80vw;
margin: auto;
margin-top: 30px;
}
.inputKeywordsHandle {
position: relative;
display: flex;
}
.inputKeywordsHandle input[type='text'] {
height: 30px;
display: inline-block;
width: 300px;
}
.inputKeywordsHandle ul {
margin: 0;
position: absolute;
top: 30px;
left: 0;
padding: 0;
display: flex;
flex-direction: column;
width: 300px;
list-style: none;
}
.inputKeywordsHandle ul li {
background: #e60228cb;
opacity: .9;
height: 30px;
padding: 5px;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
color: white;
padding-left: 30px;
border-bottom : solid 1px white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.inputKeywordsHandle ul li:last-of-type {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.inputKeywordsHandle ul li:first-of-type {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.fake-form {
display: flex;
flex-direction: column;
}
.fake-form input[type='text'] {
border-radius: 30px;
border: solid 1px lightgrey;
height: 30px;
padding-left: 20px;
}
.fake-form input[type='submit'] {
border-radius: 30px;
border: solid 1px lightgrey;
height: 30px;
margin-left: 30px;
width: 200px;
background: #f50029cb;
color: white;
cursor: pointer;
}
article {
margin: 20px 0;
border: solid 1px lightgray;
padding: 20px;
width: 24%;
border-radius: 10px;
}
article h2 {
color: #f50029cb;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.articlesList {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.keywordsList {
margin-top: 20px;
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}