-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_styles.css
More file actions
99 lines (84 loc) · 1.52 KB
/
analysis_styles.css
File metadata and controls
99 lines (84 loc) · 1.52 KB
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
/* styles.css */
/* Global styles */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
color: #333;
text-align: center;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
h2 {
font-size: 28px;
margin-bottom: 20px;
}
/* Header styles */
.header {
background-color: #0074D9;
color: #fff;
padding: 20px;
text-align: center;
}
.header h1 {
font-size: 36px;
margin: 0;
}
/* Table styles */
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #0074D9;
color: #fff;
}
/* Button styles */
button {
background-color: #0074D9;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
/* Problematic tags section */
.problematic-tags {
margin-top: 20px;
background-color: #f60f0f;
padding: 20px;
border-radius: 5px;
}
.problematic-tags h3 {
font-size: 24px;
margin-bottom: 20px;
}
.problematic-tags p {
font-size: 18px;
margin-bottom: 10px;
}
/* Footer styles */
.footer {
text-align: center;
margin-top: 20px;
font-size: 14px;
color: #777;
}
/* Add more styles as needed */