-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyPage.css
More file actions
182 lines (158 loc) · 3.96 KB
/
myPage.css
File metadata and controls
182 lines (158 loc) · 3.96 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
html, body {
background: linear-gradient(180deg, #120B3C 0%, #280EC9 100%);
width:100%;
height: 100%;
min-width: 1250px;
min-height: 650px;
}
@font-face {
font-family: "AppleSDGothicNeoB00";
src: url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.eot");
src: url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/70710ba3196618b630b4a1e532809b1d.svg#AppleSDGothicNeoB00")format("svg");
}
*{
list-style: none;
text-decoration: none;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
font-size: 6.5px;
}
.wrapper {
float: left;
height:100%;
width: 20%;
min-width: 250.4px;
min-height: 651.2px;
}
.wrapper .sidebar{
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 2rem 0;
transition: all 0.5s ease;
min-width: 250.4px;
min-height: 651.2px;
}
.wrapper .sidebar .logo {
margin-top: 2.5rem;
margin-left: 4rem;
margin-bottom: 8.7rem;
}
.wrapper .sidebar .logo .logoDesign {
height: 6rem;
}
.wrapper .sidebar .logo .logoName {
padding: 1rem;
height: 4.5rem;
}
.wrapper .sidebar ul {
padding-left: 10%;
}
.wrapper .sidebar li a{
display: block;
padding: 3.4rem 3rem;
color: #ffffff;
position: relative;
width: 100%;
}
.wrapper .sidebar li a .icon{
color: #ffffff;
width: 15%;
display: inline-block;
}
.wrapper .sidebar li a:hover,
.wrapper .sidebar li a.active{
border-radius: 20px 0px 0px 20px;
background: #F4F5F9;
color: #002067;
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
/*hover를 같은 설정으로 주고 싶으면 위의 코드보다 하나 위로 위치해야 함*/
.wrapper .sidebar li a.logout{
border-radius: 20px 0px 0px 20px;
background: rgba(191, 203, 255, 0.26);
margin-top: 90%;
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
.wrapper .sidebar li a:hover i,
.wrapper .sidebar ul li a.active i{
color: #002067;
}
.wrapper .sidebar ul li a:hover:before,
.wrapper .sidebar ul li a.active:before{
display: block;
}
.icon {
vertical-align: middle;
}
.item {
vertical-align: middle;
font-family: 'AppleSDGothicNeoB00';
font-size: 2.4rem;
font-style: normal;
line-height: normal;
padding-left: 2rem;
}
.main {
float:left;
width: 79%;
height: 97%;
min-width: 974.062px;
min-height: 607.272px;
}
.main .mainScreen {
width: 100%;
height: 100%;
background-color: #F5F7FB;
margin-top: 1%;
margin-bottom: 1%;
border-radius: 5px;
box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
min-width: 974.062px;
min-height: 607.272px;
}
.main .place {
margin-top: 2rem;
margin-right: 5.87rem;
float: right;
flex-shrink: 0;
min-width: 177.453px;
min-height: 31px;
}
.main .place .person {
vertical-align: middle;
}
.main .place .placeName {
color: #BAC7E8;
font-family: 'AppleSDGothicNeoB00';
font-size: 2.0667rem;
font-style: normal;
font-weight: 40rem;
line-height: normal;
vertical-align: middle;
}
.main .block {
width: 850px;
height: 100%;
padding-top: 20%;
margin: auto;
}
.main .sentence {
color: #000;
font-family: 'AppleSDGothicNeoB00';
font-size: 4rem;
padding-bottom: 50px;
}
.main .call {
color: #8B8B8B;
font-family: 'AppleSDGothicNeoB00';
font-size: 3rem;
padding-top: 50px;
}