-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
138 lines (136 loc) · 3.36 KB
/
Copy pathprofile.css
File metadata and controls
138 lines (136 loc) · 3.36 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
.primary-pink-button-container {
display: flex;
position: relative;
}
.primary-pink-button-button {
color: var(--dl-color-gray-white);
outline: none;
background: linear-gradient( 310deg ,#7928ca,#ff0080);
box-shadow: 0 4px 7px -1px rgb(0 0 0 / 11%), 0 2px 4px -1px rgb(0 0 0 / 7%);
transition: all .15s ease-in;
padding-top: var(--dl-space-space-triplequarterunit);
border-width: 0px;
padding-left: var(--dl-space-space-unitandahalfunit);
border-radius: 1.875rem;
padding-right: var(--dl-space-space-unitandahalfunit);
padding-bottom: var(--dl-space-space-triplequarterunit);
}
.primary-pink-button-button:hover {
cursor: pointer;
transform: scale(1.02);
}
.header-full-header {
width: 100%;
height: 60px;
display: flex;
z-index: 3;
box-shadow: 0 .25rem .375rem -.0625rem hsla(0,0%,8%,.12),0 .125rem .25rem -.0625rem hsla(0,0%,8%,.07)!important;
padding-left: var(--dl-space-space-unitandahalfunit);
padding-right: var(--dl-space-space-unitandahalfunit);
justify-content: center;
}
.header-full-nav {
flex: 0 0 auto;
color: var(--dl-color-secondary-600);
width: 100%;
display: flex;
flex-wrap: wrap;
max-width: 1320px;
align-items: center;
padding-top: var(--dl-space-space-halfunit);
padding-left: var(--dl-space-space-unitandahalfunit);
padding-right: var(--dl-space-space-unitandahalfunit);
flex-direction: row;
padding-bottom: var(--dl-space-space-halfunit);
justify-content: space-between;
}
.header-full-container {
color: var(--dl-color-gray-black);
width: 100%;
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.header-full-navlink {
font-weight: 600;
margin-right: var(--dl-space-space-unit);
text-decoration: none;
}
.header-full-menu {
flex: 0 0 auto;
display: flex;
align-items: flex-start;
flex-direction: row;
}
.header-full-navlink1 {
margin-top: var(--dl-space-space-halfunit);
transition: 0.3s;
margin-left: var(--dl-space-space-unit);
margin-right: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-halfunit);
text-decoration: none;
}
.header-full-navlink1:hover {
color: var(--dl-color-gray-500);
}
.header-full-navlink2 {
margin-top: var(--dl-space-space-halfunit);
transition: 0.3s;
margin-left: var(--dl-space-space-unit);
margin-right: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-halfunit);
text-decoration: none;
}
.header-full-navlink2:hover {
color: var(--dl-color-gray-500);
}
.header-full-text:hover {
color: var(--dl-color-gray-500);
}
.header-full-container1 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.header-full-container2 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.header-full-icon {
width: 24px;
height: 24px;
display: none;
margin-left: var(--dl-space-space-unit);
}
@media(max-width: 991px) {
.header-full-nav {
max-width: 960px;
}
.header-full-navlink {
color: var(--dl-color-secondary-700);
}
.header-full-menu {
display: none;
}
.header-full-icon {
display: flex;
}
}
@media(max-width: 479px) {
.header-full-container2 {
display: none;
}
}
.profile-container {
width: 100%;
height: auto;
display: flex;
min-height: 100vh;
align-items: center;
flex-direction: column;
background-color: var(--dl-color-gray-900);
}