forked from Cyanide2119/AgriReviewsSentimentalAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (51 loc) · 849 Bytes
/
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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
}
h1 {
margin-top: 20px;
color: #333;
}
form {
margin: 20px 0;
}
input[type="text"] {
padding: 10px;
width: 250px;
margin-right: 10px;
}
button {
padding: 10px 15px;
color: #fff;
background-color: #5cb85c;
border: none;
cursor: pointer;
}
button:hover {
background-color: #4cae4c;
}
table {
width: 80%;
margin: 20px auto;
border-collapse: collapse;
background-color: #fff;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
a {
color: #333;
text-decoration: none;
}
.plots img {
width: 80%;
margin: 20px 0;
}