-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
108 lines (102 loc) · 1.91 KB
/
about.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
.about{
margin-top: 3rem;
}
.achcontain{
display: grid;
grid-template-columns: 40% 60%;
gap: 5rem;
}
.achright p{
margin: 1.6rem 0 2.5rem;
}
.achcards{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 1.5rem;
}
.achcard{
background: #5b09a2;
padding: 1.6rem;
border-radius: 1rem;
text-align: center;
transition: var(--transition);
}
.achcard:hover{
background: #690dca;
box-shadow: 0 3rem 3rem rgba(0, 0, 0,0.3);
}
.achicon{
padding: 0.6rem;
border-radius: 1rem;
display: inline-block;
margin-bottom: 2rem;
background: red;
font-size: 2rem;
}
.achcard p{
margin-top: 1rem;
}
.team{
box-shadow: inset 0 0 3rem rgba(0, 0, 0,0.5);
}
.teamcontain{
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 2rem;
}
.teammem{
background: #690dca;
padding: 2rem;
border: 1px solid transparent;
transition: var(--transition);
}
.teammem:hover{
background: transparent;
border-color: var(--clr-blue);
}
.teammem img{
filter: saturate(0);
}
.teammem:hover img{
filter: saturate(1);
}
.meminfo{
text-align: center;
margin-top: 1.4rem;
}
@media screen and (max-width:1024px){
.about{
margin-top: 2rem;
}
.achcontain{
grid-template-columns: 1fr;
gap: 4rem;
}
.achleft{
width: 80%;
margin: 0 auto;
}
.teamcontain{
grid-template-columns: repeat(3,1fr);
gap: 1.5rem;
}
.teammem{
padding: 1rem;
}
}
@media screen and (max-width:600px){
.achcard{
grid-template-columns: 1fr 1fr;
gap: 0.7rem;
}
.teamcontain{
grid-template-columns: 1fr 1fr;
gap: 0.7rem;
}
.teammem{
padding: 0;
}
.teammem p{
margin-bottom: 1.5rem;
}
}