-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
132 lines (100 loc) · 1.76 KB
/
Copy pathabout.css
File metadata and controls
132 lines (100 loc) · 1.76 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body
{
font-family: 'Poppins', sans-serif;
}
h1
{
font-size: 3rem;
font-weight: 700;
color: #0e263d;
}
h1:hover{
color: #972134;
}
span
{
font-size: .9rem;
}
h6
{
font-size: 1.1rem;
color: rgb(24, 24, 49);
}
/*------------- Features section styling start -------------*/
#features
{
padding: 2vw 8vw 0 8vw;
text-align: center;
}
#department-logo {
position: absolute;
top: 110px;
left: 220px;
width: 130px; /* Adjust as needed */
height: auto;
transition: transform 0.3s ease-in-out;
}
#department-logo:hover {
transform: scale(1.1); /* Slightly increase the size */
}
#features .fea-base
{
max-width: 1150px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 3rem;
margin: 50px auto;
}
#features .fea-box
{
background: #edf1f2;
text-align: start;
padding: 0.5rem 1.5rem 1.5rem 1.5rem;
border-radius: 6px;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.4);
width: 100%;
}
#features .fea-box:hover
{
box-shadow: rgba(235, 8, 8, 0.25) 0px 10px 50px;
}
#features .fea-box h3
{
font-size: 2rem;
font-weight: 600;
color: rgb(46, 46, 59);
padding: 2px 0 5px 0;
}
#features .fea-box p
{
font-size: 1.1rem;
font-weight: 400;
color: #1a1919;
}
@media screen and (max-width: 475px)
{
#registration
{
flex-direction: column;
}
.reminder p, .reminder h1
{
text-align: center;
}
.reminder h1
{
font-size: 1.8rem;
}
#registration .reminder .time
{
justify-content: space-evenly;
margin-top: 20px;
}
}