-
Notifications
You must be signed in to change notification settings - Fork 1
/
profile.css
121 lines (90 loc) · 1.95 KB
/
profile.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
110
111
112
113
114
115
116
117
118
119
120
121
body{
/* background-color: #20cd79; */
}
.cover{
width: 100%;
height: 500px;
background:url('img/profilecover2.jpg')no-repeat;
background-size: cover;
display: grid;
place-items:center;
padding-top: 8rem;
}
.profilebox{
padding-top: 8rem;
text-align: center;
width: 700px;
height: 900px;
margin: 20px auto ;
background-color:white;
/* box-shadow:0 .5rem 1rem rgba(0,0,0.1); */
color:black;
padding: 10px 20px 20px 20px;
font-size: 20px;
/* border-radius: 10px ; */
}
.info{
/* font-family: 'Times New Roman', Times, serif; */
text-align: left;
padding: 10px;
}
.table-container{
padding: 0 ;
margin: 20px auto 10px;
/* border: 1px solid ; */
box-shadow: ;
/* border-radius: 10px; */
}
.table{
width: 100%;
border-collapse:separate;
border-spacing: 0px;
}
th{
position:sticky;
top:0px;
background-color: #37db8c;
}
th,td{
/* border: 1px solid #12121385; */
}
.table-wrapper{
max-height: 130px;
overflow-y: scroll;
}
.table thead tr th{
font-size: 14px;
font-weight: medium;
letter-spacing: 0.35px;
opacity: 1;
padding: 12px;
vertical-align: top;
}
/* for phone */
@media (max-width: 767px) {
.cover{
width: auto;
height:auto;
background:url('profilecover1.jpg')no-repeat;
background-size: cover;
display: grid;
place-items:center;
padding-top: 8rem;
}
.cover img{
width: 100%;
height: auto;
}
.profilebox{
width: 350px;
font-size: 14px;
height: 600px;
}
.table thead tr th{
font-size: 14px;
font-weight: medium;
letter-spacing: 0.35px;
opacity: 1;
padding: 5px;
}
}