-
Notifications
You must be signed in to change notification settings - Fork 17
/
new_style.css
109 lines (107 loc) · 2.14 KB
/
new_style.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
*{
margin:0;
padding:0;
text-decoration:none;
outline:none;
font-family: 'Edu TAS Beginner', cursive;
}
body{
max-width:1400px;
margin:auto;
background-color:#e3f4f4;
}
header{
display:flex;
padding:10px 20px;
/* border:1px solid black;*/
justify-content: space-between;
align-items:center;
border-bottom:2px solid #447c7cb2;
text-shadow: 0px 0px 2px #447c7c63;
}
.search-container{
display:flex;
align-items:center;
color:#447c7c;
}
#searchInput{
border-radius: 3px;
font-family:Arial, Helvetica, sans-serif;
/* border:1px solid #447c7cad; */
border:none;
font-size:0.9rem;
padding:4px;
box-shadow: 0px 0px 2px #447c7cb0;
transition: all 0.4s ease-in-out;
}
#searchInput:hover{
box-shadow: 0px 0px 5px #447c7c;
}
.search-container > svg{
/* font-size:1.7rem; */
margin-left:10px;
}
.heading{
font-size:2rem;
color:#447c7c;
text-shadow: 0px 0px 2px #447c7c63;
}
.cardholder{
display:grid;
gap:20px;
padding:40px 10px;
grid-template-columns: repeat(3,1fr);
}
.cardholder > .card{
display:flex;
flex-direction: column;
justify-content:space-around;
border:1px solid #8ab4b4;
height:350px;
width:300px;
margin:0px auto;
background-color:#e3f4f4;
border-radius:10px;
box-shadow:0px 0px 40px rgba(128, 128, 128, 0.384);
transition:all 0.3s ease-in-out;
}
.card>div , a{
display:flex;
justify-content: center;
color:#447c7c;
align-items:center;
text-shadow: 0px 0px 2px #447c7c63;
}
.card:hover{
transform:scale(1.03);
}
.name{
font-size: 1.4rem;
}
.prof , .repo{
display:flex;
align-items: center;
font-size:1.2rem;
transition: all 0.3s ease-in-out;
}
.prof:hover,.repo:hover{
transform: scale(1.1);
}
.prof > svg{
margin-right:10px;
}
.prof>a, .repo>a {
/* border:1px solid black; */
transition: all 0.3s ease-in-out;
}
.foot{
display: flex;
justify-content: center;
padding: 2% 0px;
border-top:2px solid #447c7cbe;
}
@media only screen and (max-width:528px){
.cardholder{
grid-template-columns: repeat (2,1fr);
}
}