-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.css
119 lines (102 loc) · 1.66 KB
/
index2.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
/* General styles */
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f0f0f0;
color: #333;
}
#header {
display: flex;
align-items: center;
justify-content: center;
background-color: #2d3436;
color: white;
padding: 20px;
}
#profile {
display: flex;
align-items: center;
}
#profile-pic {
border-radius: 50%;
margin-right: 20px;
height: 120px;
width: 110px;
}
#profile-name {
font-size: 48px;
}
#navbar {
background-color: #74b9ff;
padding: 10px;
text-align: center;
}
#navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
display: inline-block;
}
#navbar li {
display: inline-block;
position: relative;
margin: 0 15px;
}
#navbar a {
color: white;
text-decoration: none;
font-weight: bold;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #fff;
color: #333;
padding: 5px;
list-style: none;
text-align: left;
top: 100%;
left: 0;
min-width: 150px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-content a {
color: #333;
text-decoration: none;
padding: 10px;
display: none;
}
.dropdown:hover .dropdown-content:hover {
display: block;
}
#main-content {
display: flex;
justify-content: space-around;
margin: 20px;
}
.column {
width: 45%;
padding: 10px;
background-color: #dfe6e9;
border-radius: 8px;
}
#color-change-section {
text-align: center;
margin-top: 20px;
}
#color-button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
#video-section {
text-align: center;
margin-top: 20px;
}
#footer {
background-color: #2d3436;
color: white;
text-align: center;
padding: 10px;
position: relative;
}