-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.css
99 lines (82 loc) · 1.57 KB
/
main.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
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.header-main{
background:#403f3e;
height:75px;
line-height:75px;
color: white;
position:relative;
margin: 0;
}
.header-main h1{
text-align: center;
font-family: 'Alata';
font-size: 04vw;
margin-top: 0;
}
.center-aligned {
text-align: center;
}
#container {
width: 100%;
font-family: 'Alata';
background: #403f3e;
}
#content {
text-align: center;
padding: 16px;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.card {
color: black;
background: white;
/*padding: 16px;*/
margin: 8px;
text-align: center;
width: 300px;
transition: box-shadow 0.2s ease-in-out;
box-sizing: border-box;
}
.card:hover{
box-shadow: 1px 2px 4px #fff;
}
.profile-image-back{
background:linear-gradient(to right, #f7f7f7 0%, #ededed 100%);
margin: 0;
padding-top: 10px;
height: 140px;
}
.profile-image-container img {
width: 120px;
height: 120px;
margin-top: 15px;
margin-bottom: 15px;
border-radius: 50%;
transition: transform 0.3s;
}
.profile-image-container img:hover{
transform: scale(1.1);
}
.profile-name a {
color: #232324;
font-size: 18px;
text-decoration: none;
}
.profile-name p {
font-size: 12px;
margin-top: 4px;
}
.profile-title {
margin-top: 8px;
margin: 10px;
font-size: 14px;
padding: 5px;
overflow-wrap: break-word;
overflow: hidden;
}