-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle3.css
More file actions
86 lines (76 loc) · 1.71 KB
/
style3.css
File metadata and controls
86 lines (76 loc) · 1.71 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
body {
font-family: Arial, sans-serif;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.header-bar {
width: 1440px;
height:121px;
background-color: rgba(217.0000022649765, 217.0000022649765, 217.0000022649765, 1);
padding: 20px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
}
.logo {
background-color:rgba(159.375, 154.0625050663948, 154.0625050663948, 1);
width:256px;
height:66px;
border-top-left-radius:20px;
border-top-right-radius:20px;
border-bottom-left-radius:20px;
border-bottom-right-radius:20px;
margin-left: 30px;
font-size: 24px;
font-weight: bold;
}
.header-buttons {
margin-right: 20px;
}
.btn-header {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
.form-container {
width: 1000px;
margin-top: 140px; /* 상단바 아래에 위치 */
background-color: white;
padding: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.form-title {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 8px;
line-height: 1.5;
border: 1px solid #ccc;
box-sizing: border-box;
}
button[type="submit"] {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}