-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathORGIZ_webdev_appdev_devops_DETAILED.css
More file actions
157 lines (131 loc) · 2.49 KB
/
ORGIZ_webdev_appdev_devops_DETAILED.css
File metadata and controls
157 lines (131 loc) · 2.49 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
background-image: url('pexels-johannes-plenio-1103970.jpg');
background-size: cover;
background-attachment: fixed;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
table {
border-collapse: collapse;
width: 100%;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
th, td {
border: 1px solid #d1d1d1;
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
/* Professional color scheme */
th, td {
color: #333;
}
th {
background-color: #f8f8f8;
}
/* Alternating row colors */
tr:nth-child(even) {
background-color: #f2f2f2;
}
/* Hover effect */
th:hover, td:hover {
color: #007bff;
}
.dropdown {
display: inline-block;
cursor: pointer;
}
.dropdown-btn {
background-color: #007BFF;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.dropdown-btn:hover {
background-color: #fc036b;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 240px; /* Increased width for longer rows */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown.active .dropdown-content {
display: block;
}
.dropdown-content ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.dropdown-content li {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd; /* Add separator between rows */
}
.dropdown-content li:last-child {
border-bottom: none; /* Remove separator for last row */
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 10px 0;
}
nav li {
margin: 0 20px;
}
nav a {
text-decoration: none;
color: #007BFF;
transition: color 0.3s ease-in-out;
}
nav a:hover {
text-decoration: none;
background-color: #fc036b;
}
nav .active {
background-color: #007bff;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
}
section {
display: none;
padding: 20px;
}
/* Create a button press effect on click */
.button {
transition: transform 0.2s ease-in-out;
}
.button:active {
transform: scale(0.95);
}
#closeButton {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
background: none;
border: none;
color: #333;
cursor: pointer;
}