-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (123 loc) · 2.4 KB
/
style.css
File metadata and controls
124 lines (123 loc) · 2.4 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
* {
margin: 0;
padding: 0;
}
body {
background-color: seagreen;
}
.nav-container {
display: flex;
flex-direction: row;
width: 100%;
margin: 0 0 80px 0;
padding: 0;
background-color: white;
list-style-type: none;
position: fixed;
top: 0;
box-shadow: 0 0 20px #000;
}
.nav-item {
padding: 15px;
cursor: pointer;
}
.nav-item>a:nth-child(n+1) {
text-align: center;
text-decoration: none;
color: seagreen;
font-family: 'Nanum Gothic', sans-serif;
}
.nav-container>.main {
font-family: 'Montserrat', sans-serif;
}
.nav-item:hover {
background-color: gray;
transition-duration: 0.3s;
}
.nav-item:hover>a {
color: white;
font-weight: bold;
}
.signUp-message {
text-align: center;
width: 100vw;
margin: 80px auto;
}
.signUp-message>h1 {
font-family: 'Montserrat', sans-serif;
font-size: 8vw;
margin-bottom: 10px;
}
.signUp-message>p {
font-family: 'Nanum Gothic', sans-serif;
font-size: 2vw;
}
.main-container {
width: 300px;
margin: 10px auto;
margin-bottom: 40px;
background-color: white;
border-radius: 10px;
box-shadow:20px 20px black;
}
form>h3 {
margin-top: 10px;
font-family: 'Nanum Gothic', sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
form>input {
width: 80%;
height: 30px;
max-width: 200px;
margin: 20px;
border: 2px solid seagreen;
border-radius: 5px;
font-family: 'Nanum Gothic', sans-serif;
padding: 3px;
}
form>input:focus {
outline: none;
background-color: rgba(173, 216, 230, 0.459);
}
form>button {
margin-right: 140px;
border: none;
background-color: lightgray;
padding: 5px;
border-radius: 5px;
font-family: 'Nanum Gothic', sans-serif;
}
form>button:hover {
outline: none;
background-color: lightseagreen;
}
.submit {
border: none;
background-color: seagreen;
}
.submit:hover {
background-color: lightseagreen;
}
.address-list>li {
list-style: none;
margin: 20px;
padding: 10px;
border-radius: 10px;
font-family: 'Nanum Gothic', sans-serif;
background-color: rgba(135, 206, 250, 0.158);
}
.address-list>li:hover {
background-color: lightskyblue;
cursor: pointer;
}
.end-message {
margin: 20px;
padding: 20px;
text-align: center;
font-family: 'Nanum Gothic', sans-serif;
}