-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (98 loc) · 1.76 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
/* Global Styles */
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
h1, h2, h3, h4, p {
margin: 0;
padding: 10px;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header Styles */
header {
background-color: #1e90ff;
color: white;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-size: 36px;
}
/* Section Styles */
section {
padding: 20px;
}
.section-title {
color: #1e90ff;
border-bottom: 2px solid #1e90ff;
display: inline-block;
margin-bottom: 20px;
}
hr {
border: 0;
height: 1px;
background: #ddd;
margin: 20px 0;
}
/* Developer Card Styles */
.developers {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.developer {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 280px;
padding: 20px;
text-align: left;
position: relative;
overflow: hidden;
}
.developer img {
width: 100%;
border-radius: 8px;
margin-bottom: 10px;
}
.developer h4 {
color: #1e90ff;
margin-top: 0;
}
.developer p {
font-size: 16px;
color: #555;
}
.developer a {
color: #1e90ff;
display: inline-block;
margin-top: 10px;
}
/* Footer Styles */
footer {
background-color: #1e90ff;
color: white;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 14px;
}