-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (82 loc) · 1.71 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
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
body {
background-color: #2c3e50;
font-family: Arial, sans-serif;
color: #ecf0f1;
margin: 0;
padding: 20px;
}
header, footer {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
color: white;
font-weight: bold;
}
textarea {
width: 100%;
height: 100px;
border: solid 1px grey;
background-color: #34495e;
color: #ecf0f1;
padding: 10px;
box-sizing: border-box;
}
input[type="text"] {
width: 100%;
border: solid 1px grey;
background-color: #34495e;
color: #ecf0f1;
padding: 10px;
box-sizing: border-box;
}
button {
background-color: #2980b9;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #3498db;
}
#result-container {
display: flex;
flex-direction: column;
max-height: 400px;
max-width: 100%;
overflow: auto;
margin-top: 20px;
}
#result div {
border: 1px solid black;
padding: 10px;
margin-bottom: 10px;
background-color: lightgray;
color: black;
}
article {
margin-top: 20px;
padding: 20px;
background-color: #34495e;
border-radius: 8px;
}
article h2 {
color: #ecf0f1;
}
article p, article ul, article li {
color: #ecf0f1;
}
a {
color: #f39c12; /* Change to a lighter color that stands out */
text-decoration: none; /* Remove underline */
transition: color 0.3s ease; /* Smooth transition for color change */
}
a:hover {
color: #16a085; /* Slightly darker color for hover effect */
}