-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (114 loc) · 2.01 KB
/
style.css
File metadata and controls
119 lines (114 loc) · 2.01 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
*{
margin:0; /*상하좌우 0px*/
padding:0;/*상하좌우 0px*/
box-sizing: border-box;
}
header{
background-color: orange;
width: 100%;
padding:20px; /*상하좌우 20px*/
color:white; /*텍스트 색상*/
font-size:24px; /*텍스트 크기*/
font-weight: bold; /*텍스트 굵기*/
}
nav{
background-color: black;
width: 100%;
padding:10px;
display:flex;
gap:20px;
}
nav a{
color:darkorange;
margin: 0 15px;
font-weight: bold;
font-size: 16px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
gap:20px;
padding:30px 0;
}
table {
width:50vw;
border-collapse: collapse;
border:1px solid #ddd;
}
th {
border-bottom: 1px solid #ddd;
padding: 8px;
text-align: left;
background-color: darkorange;
color:white;
}
td {
border-bottom: 1px solid #ddd;
padding: 8px;
}
.tmi-container {
display: flex;
align-items: center;
gap:20px;
}
.tmi-card{
border: 1px solid #ddd;
border-radius: 10px;
width:200px;
display: flex;
flex-direction: column;
align-items: center;
padding:20px;
}
.tmi-card p {
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
text-align: center;
}
.tmi-image {
width: 100px;
height: 100px;
border-radius: 10px;
object-fit: cover;
margin-bottom: 10px;
aspect-ratio: 1;
}
input {
width: 300px;
height: 40px;
padding: 80x;
border: 1px dolid #ddd;
border-radius: 5px;
}
button {
background-color: darkorange;
width:100px;
height: 40px;
color:white;
border:none;
cursor:pointer;
border-radius: 5px;
}
footer {
width: 100%;
margin-top:20px;
padding: 10px;
font-size: 14px;
color:gray;
display:flex;
flex-direction: column;
align-items: center;
}
a {
color:darkorange;
text-decoration: none;
font-weight: bold;
}
body {
display:flex;
flex-direction: column;
align-items: center;
}