-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (104 loc) · 2.12 KB
/
style.css
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
@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
/********************* 전체 스타일 초기화 *********************/
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
ul {
list-style: none;
}
a {
text-decoration: none;
}
/***********************************************************/
body {
width: 100%;
height: 100vh;
background: linear-gradient(45deg, #8e74ff, #a011ff) no-repeat;
}
section {
width: 60vw;
height: 85vh;
padding: 30px;
background-color: #fff;
margin: 50px auto;
box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
section article.profile {
width: 100%;
text-align: center;
margin-bottom: 50px;
}
section article.profile h1 {
font-weight: bold;
font-size: 22px;
font-family: "arial";
line-height: 1;
color: #555;
margin-bottom: 5px;
}
section article.profile h2 {
font-weight: normal;
font-size: 12px;
font-family: "arial";
color: #bbb;
margin-bottom: 30px;
}
section ul.web-list {
margin-bottom: 25px;
}
section ul.web-list li {
width: 100%;
padding: 10px 0px;
border-bottom: 1px solid #eee;
}
section ul.web-list li:last-child {
border-bottom: none;
}
section ul.web-list li i {
width: 20%;
text-align: center;
color: #555;
font-size: 15px;
text-shadow: 2px 2px 2px #ddd;
}
section ul.web-list li span {
font-weight: normal;
font-size: 11px;
font-family: "orbitron";
color: #555;
letter-spacing: 1px;
}
section ul.contact {
margin-top: 50px;
margin-bottom: 25px;
}
section ul.contact li {
width: 100%;
padding: 10px 0px;
border-bottom: 1px solid #eee;
}
section ul.contact li:last-child {
border-bottom: none;
}
section ul.contact li i {
width: 20%;
text-align: center;
color: #555;
font-size: 15px;
text-shadow: 2px 2px 2px #ddd;
}
section ul.contact li span {
font-weight: normal;
font-size: 11px;
font-family: "orbitron";
color: #555;
letter-spacing: 1px;
}
/* member1 */
body.member1 {
background-color: #ebfaff;
}