-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathprofile-about.css
119 lines (114 loc) · 1.93 KB
/
profile-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
109
110
111
112
113
114
115
116
117
118
119
.profile-container {
}
.image {
position: relative;
width: 180px;
height: 180px;
border-radius: 100px;
}
.summary {
position: absolute;
width: 350px;
top: 280px;
padding: 15px;
background: #fbfcff;
box-shadow: 0px 4px 15px rgba(31, 89, 187, 0.1);
border-radius: 10px;
}
.name {
font-family: Nunito;
font-style: normal;
font-weight: 350;
font-size: 35px;
text-align: center;
color: #000000;
}
.info {
font-family: Nunito;
color: #000000;
font-size: 15px;
}
.goodluck {
padding: 30px;
text-align: center;
font-size: 15px;
}
.contact {
position: absolute;
width: 697px;
left: 400px;
top: 280px;
background: #fbfcff;
box-shadow: 0px 4px 15px rgba(31, 89, 187, 0.1);
border-radius: 10px;
padding-bottom: 20px;
}
.tabContainer {
width: 100%;
height: 385px;
background: #fbfcff;
}
.buttonContainer {
height: 15%;
margin-left: 400px;
left: 400px;
justify-content: center;
align-items: center;
padding: 5px;
}
button {
width: 25%;
height: 100%;
float: left;
border: none;
outline: none;
cursor: pointer;
font-family: Nunito;
font-style: normal;
font-weight: 350;
text-align: center;
font-size: 25px;
background-color: #fbfcff;
border: none;
}
button:hover {
background-color: transparent;
text-decoration: underline;
}
.tabPanel {
height: 85%;
background-color: grey;
color: black;
text-align: center;
padding-top: 105px;
box-sizing: border-box;
font-size: 22px;
display: none;
}
@media only screen and (max-width: 600px) {
* {
padding-top: 9px;
}
.image {
border-radius: 100px;
padding-bottom: 8px;
height: 180px;
right: 20px;
}
.summary {
padding-top: 50px;
width: 360px;
right: 140px;
justify-content: center;
align-items: center;
text-align: center;
padding: 15px;
}
.contact {
display: grid;
grid-template-columns: 1, 1fr;
width: 300px;
right: 400px;
top: 140px;
}
}