-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (103 loc) · 1.75 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
width: 320px; /* Adjusted width */
}
.container {
display: flex;
flex-direction: column;
}
h1 {
font-size: 20px;
margin-bottom: 20px;
color: #333;
}
label {
margin: 10px 0 5px;
color: #555;
}
input {
margin-bottom: 15px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
box-sizing: border-box; /* Include padding in width */
transition: border 0.3s;
}
input:focus {
border-color: #007bff; /* Highlight on focus */
outline: none;
}
button {
background-color: #007bff;
color: white;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3; /* Darker shade on hover */
}
h2 {
margin-top: 20px;
font-size: 18px;
color: #333;
}
p {
margin: 5px 0;
color: #444;
}
.tabs {
display: flex;
margin-bottom: 20px;
}
.tab-button {
flex: 1;
padding: 10px;
background: #007bff;
color: white;
border: none;
cursor: pointer;
border-radius: 4px 4px 0 0;
transition: background 0.3s;
margin-right: 5px;
}
.tab-button.active {
background: #0056b3;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
button:hover {
background: #218838;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 10px;
text-align: left;
border: 1px solid #ddd;
}
th {
background: #007bff;
color: white;
}
tr:nth-child(even) {
background: #f2f2f2;
}
tr:hover {
background: #e9ecef;
}