-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile_page.css
46 lines (44 loc) · 1.02 KB
/
profile_page.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
body {
background: #67B26F; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4ca2cd, #67B26F); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4ca2cd, #67B26F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 0;
margin: 0;
font-family: 'Lato', sans-serif;
color: #000;
}
.student-profile .card {
border-radius: 10px;
}
.student-profile .card .card-header .profile_img {
width: 150px;
height: 150px;
object-fit: cover;
margin: 10px auto;
border: 10px solid #ccc;
border-radius: 50%;
}
.student-profile .card h3 {
font-size: 20px;
font-weight: 700;
}
.student-profile .card p {
font-size: 16px;
color: #000;
}
.student-profile .table th,
.student-profile .table td {
font-size: 14px;
padding: 5px 10px;
color: #000;
}
span.special,div.special {
color: #4ca2cd;
font-weight: bold;
}
.card-header nav{
background: white;
}
a:hover{
text-decoration: none;
}