-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (79 loc) · 1.41 KB
/
style.css
File metadata and controls
95 lines (79 loc) · 1.41 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
*{
box-sizing:border-box;
padding: 0;
margin: 0;
}
body{
color:#000000;
background-color:rgb(240, 248, 255);
font-size: 18px;
line-height: 1.5;
}
.nav{
list-style-type: none;
}
.main{
color: rgb(70, 90, 110); /*메인 화면 글자색*/
line-height: 1.5;
margin-left: 20px;
margin-right: 20px;
}
ul{
list-style-type: disc;
padding-left: 40px;
}
ol{
list-style-type: decimal;
padding-left: 40px;
}
dl{
margin-left: 20px;
}
dd{
margin-left: 20px;
}
.navbar{
background-color: rgb(70, 130, 180); /*헤더 배경 색*/
color: rgb(255, 255, 255); /*헤더 왼쪽 Webdemo 글자색*/
height: 60px;
}
.navbar .container{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100%;
}
.navbar ul{
display: flex;
flex-direction: row;
}
.navbar ul li {
margin-left: 20px; /*헤더 넓이*/
}
.navbar a{
color: rgb(255, 255, 255);
text-decoration:none;
font-size: 20px;
font-weight: bold;
}
.navbar a:hover{
border-bottom: 2px rgb(0, 123, 255) solid;
color: #ddd;
}
.navbar .logo{
font-size: x-large;
font-weight: bold;
}
button {
padding:5px 50px;
margin: 5px;
font-size: large;
background-color: rgb(173, 216, 230);
border-width: 1;
border-radius: 5px;
}
button:hover{
color: red;
background-color: gray;
}