-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
144 lines (134 loc) · 2.47 KB
/
Copy pathbase.css
File metadata and controls
144 lines (134 loc) · 2.47 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@300;400;500&family=Roboto:wght@300&display=swap');
* {
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Flex', sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
/* header 관련 */
nav {
background-color: white;
border-bottom: 1px solid lightgray;
}
main {
min-height: calc(100vh - 260px);
}
.base-logo {
width: 150px;
height: 30px;
}
.signup-Btn {
border: 0.5px solid gray;
border-radius: 6px;
background-color: transparent;
padding: 14px;
padding-top: 6px;
padding-bottom: 5px;
font-size: 14px;
font-weight: bold;
}
.login-Btn {
color: gray;
font-size: 14px;
}
.search-label {
padding-left: 8px;
border-radius: 5px;
overflow: hidden;
}
.search-input {
width: 290px;
height: 38px;
overflow: auto;
z-index: 10;
}
.search-input::placeholder {
font-size: 14px;
}
.search-input:focus {
outline: none;
}
/* footer 관련 */
footer > section:nth-child(1) {
height: 60px;
}
.survey-cnt {
color: #ff0558;
}
footer > section:nth-child(2) {
background-color: #1c1d1f;
height: 200px;
color: gray;
}
/* modal 관련 */
.modal-content > div > img {
width: 200px;
}
.log-input input:nth-child(1),
.log-input input:nth-child(2) {
background-color: #f5f5f5;
border: none;
border-radius: 0.5rem;
padding: 8px;
padding-left: 10px;
padding-right: 10px;
caret-color: #ff0558;
&:focus {
outline: none;
}
}
.input-password {
background-color: #f5f5f5;
border: none;
border-radius: 0.5rem;
padding: 8px;
padding-left: 10px;
padding-right: 10px;
caret-color: #ff0558;
&:focus {
outline: none;
}
}
.log-submit_btn {
height: 45px;
background-color: #ff3b7d;
color: white;
border: none;
border-radius: 0.5rem;
font-weight: 600;
}
.log-link span {
color: gray;
font-size: 15px;
}
.log-link a {
color: #ff3b7d;
font-size: 15px;
text-decoration: none;
}
.line {
width: 100%;
height: 1px;
background-color: lightgray;
}
.kakao-log_btn {
width: 50px;
height: 50px;
background-color: #f7e317;
border-radius: 50%;
}
.google-log_btn {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
border: 0.5px solid lightgray;
}
.naver-log_btn {
width: 50px;
height: 50px;
background-color: #00c300;
border-radius: 50%;
}