-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudents.css
More file actions
144 lines (127 loc) · 2.21 KB
/
students.css
File metadata and controls
144 lines (127 loc) · 2.21 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
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#home{
background-color: #86bdf4;
font-size: larger;
font-style:unset;
font-family: Georgia, 'Times New Roman', Times, serif;
}
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
}
/* Navbar Styling */
.navbar {
background-color: #51687e;
color: white;
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0px;
}
.logo {
font-size: 34px;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links li a {
color: white;
text-decoration: none;
font-size: 16px;
transition: color 0.3s;
}
.nav-links li a:hover {
color: #f39c12;
}
/* Card Section */
.card-container {
display:flex;
flex-wrap: wrap;
/* justify-content: center; */
padding: 20px;
gap: 20px;
}
.card {
width: 250px;
background-color: white;
display: inline-block;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
padding: 15px;
transition: transform 0.3s;
margin-left: 30px;
margin-bottom: 10px;
}
.card:hover {
transform: scale(1.05);
}
.card img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
.about {
background-color: #d5dfe1;
padding: 40px 20px;
text-align: center;
}
.about h2 {
font-size: 28px;
margin-bottom: 15px;
color: #999fa5;
}
.about p {
font-size: 18px;
color: #444;
max-width: 1000px;
margin: 0 auto 15px;
line-height: 1.6;
}
.contact{
background-color: rgb(88, 121, 121);
text-align: center;
}
.contact h2{
padding: 12px;
margin-bottom: 15px;
}
.contact p {
font-size: 18px;
color: #070101;
margin-bottom: 30px;
padding: 2px;
}
.Contact-Form input,
.Contact-Form textarea {
padding: 10px;
border: 1px solid #ccc;
border-radius:5px;
font-size: 16px;
width: 100%;
}
.Contact-Form button:hover {
background-color: #34495e;
}
.Contact-Form button{
border-radius: 20px;
padding: 12px;
background-color: #2c3e50;
color: white;
border: none;
font-weight: bold;
cursor: pointer;
}