11import styled from 'styled-components' ;
22
3+ export const HeadingContainer = styled . div `
4+ width: auto;
5+ ` ;
6+
37export const Heading = styled . h1 `
8+ text-align: start !important;
9+ font-size: 1.8rem;
10+ color: #ec8d20;
11+ ` ;
12+
13+ export const P = styled . p `
14+ font-size: 0.8rem;
15+ margin: 0.1em;
16+ opacity: 0.8;
17+ color: #6c757d;
18+ ` ;
19+
20+ export const H1 = styled . h1 `
21+ font-size: 1.3rem;
22+ ` ;
23+
24+ export const H4 = styled . h4 `
25+ font-size: 0.9rem;
26+ font-weight: 600;
27+ ` ;
28+
29+ export const CTXH4 = styled . h4 `
30+ font-size: 18px;
31+ margin: 0.5em 0 0.2em 0;
32+ color: #333;
33+ ` ;
34+
35+ export const ProfileGridContainer = styled . div `
36+ width: 100%;
37+ display: grid;
38+ grid-template-columns: 40%;
39+ align-items: center;
40+ justify-content: center;
41+ column-gap: 20px;
42+ row-gap: 10px;
43+
44+ @media (max-width: 768px) {
45+ grid-template-columns: 1fr;
46+ }
47+ ` ;
48+
49+ export const ProfileImageContainer = styled . div `
50+ width: 100%;
51+ display: flex;
52+ justify-content: center;
53+ ` ;
54+
55+ export const ProfileImageCircle = styled . div `
56+ background-color: #333;
57+ width: 150px;
58+ height: 150px;
59+ clip-path: circle();
60+ ` ;
61+
62+ export const ProfileCTXText = styled . h1 `
463 font-size: 1.8rem;
64+ ` ;
65+
66+ export const ProfileCtxBadge = styled . div `
67+ span {
68+ background-color: #238636;
69+ padding: 0.5em 3em;
70+ text-align: center;
71+ border-radius: 5px;
72+ color: white;
73+ font-size: 14px;
74+ }
75+ ` ;
76+
77+ export const ProfileCtxUser = styled . div `
578 color: #ec8d20;
679` ;
780
8- export const Card = styled . h1 `
9- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
10- max-width: 500px;
11- margin: auto;
12- margin-top: 20px;
81+ export const ProfileDetailsWrapper = styled . h1 `
82+ width: 100%;
83+ margin: 1em 0;
84+ text-align: start !important;
85+ ` ;
86+
87+ export const ProfileDetails = styled . h1 `
88+ color: #333;
89+ background-color: #e9ecef;
90+ padding: 0.2em 0.3em;
91+ margin-bottom: 0.3em;
92+ border-radius: 8px;
93+ box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
94+ ` ;
95+
96+ export const Card = styled . div `
97+ background-color: white;
1398 text-align: center;
1499 font-family: arial;
15- padding: 2rem;
100+ padding: 1em;
101+ background-color: #fff;
102+ border-radius: 8px;
103+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 4%), 0 1px 2px 0 rgb(0 0 0 / 5%);
16104` ;
17105
18106export const Title = styled . p `
19107 color: grey;
20108 font-size: 18px;
21109` ;
22- export const H1 = styled . h1 `
23- color: grey;
24- font-size: 1.3rem;
25- ` ;
26110
27111export const ButtonLogout = styled . button `
28112 border: none;
@@ -37,12 +121,10 @@ export const ButtonLogout = styled.button`
37121 font-size: 18px;
38122` ;
39123
40- // a {
41- // text-decoration: none;
42- // /* font-size: 22px; */
43- // color: black;
44- // }
45-
46- // button:hover, a:hover {
47- // opacity: 0.7;
48- // }
124+ export const ProfileGridInnerContainer = styled . div `
125+ width: 100%;
126+ display: grid;
127+ grid-template-columns: 1fr;
128+ column-gap: 20px;
129+ row-gap: 10px;
130+ ` ;
0 commit comments