HeaderStyled.tsx
2.25 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
import styled from 'styled-components';
export const Container = styled.div `
width : 100%;
position : relative;
padding : 20px 0;
box-shadow: 0px 0px 10px #a0a0a0;
margin : 0 0 15px 0;
z-index : 50;
display : flex;
flex-direction : row;
justify-content : center;
align-items : center;
`;
export const HeaderLeftWrapper = styled.div `
flex : 1;
display : flex;
flex-direction : row;
justify-content : flex-start;
align-items : center;
border : none;
margin : 0 30px;
`;
export const HeaderRightWrapper = styled.div `
flex : 1;
display : flex;
flex-direction : row;
justify-content : flex-end;
align-items : center;
border : none;
margin : 0 30px;
`;
export const HeaderCenterWrapper = styled.div `
flex : 3;
display : flex;
flex-direction : row;
justify-content : center;
align-items : center;
border : none;
`;
export const TitleImg = styled.img `
height : 30px;
width : 30px;
margin : 0 10px 0 0px;
`;
export const Title = styled.div `
text-align : center;
font-size : 17px;
font-weight : 800;
`;
export const Backbutton = styled.button `
border : 1px solid #337DFF;
border-radius : 5px;
background-color : transparent;
color : #337DFF;
padding : 4px 17px;
transition : .25s all;
display : flex;
flex-direction : row;
justify-content : center;
cursor : pointer;
&:hover {
opacity : .5;
}
`;
export const BackbuttonImg = styled.img `
height : 14px;
width : 14px;
margin : 0 6px 0 0;
`;
export const BackbuttonText = styled.div `
font-size : 15px;
font-weight : 700;
letter-spacing : 1px;
`;
export const LogoutButton = styled.button `
display : flex;
justify-content : center;
// align-items : center;
background-color : transparent;
border : none;
border-bottom : 1px solid #a0a0a0;
padding : 0 4px 4px 4px;
cursor : pointer;
transition : .25s all;
&:hover {
opacity : .5;
}
`;
export const LogoutButtonImg = styled.img `
height : 15px;
width : 15px;
margin : 0 4px 0 0;
`;
export const LogoutButtonText = styled.div `
color : #a0a0a0;
font-size : 13px;
letter-spacing : 1px;
`;