style2.css
1.65 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
:root {
--main-bg-color: #6e87cf;
--point-color: #2e29af;
}
* {
font-family: "Noto Sans KR", sans-serif;
}
body {
margin: 0;
padding: 0;
background: no-repeat fixed 50% 50% url("../src/background.jpg");
}
h1 {
color: #f3d8be;
font-size: 40px;
font-weight: 900;
padding: 5px 0 20px 0;
margin: 0;
text-shadow: #2e29af 1px 1px, #2e29af 0px 0px, #2e29af 1px 1px,
#2e29af 2px 2px, #2e29af 3px 3px, #2e29af 4px 4px, #2e29af 5px 5px,
#2e29af 6px 6px, #2e29af 7px 7px;
}
h1:hover {
cursor: pointer;
}
nav {
padding: 5px 10px;
/* background-color: rgba(255, 255, 255, 0.9); */
}
main {
display: flex;
flex-direction: column;
align-items: center;
/* background-color: rgba(255, 255, 255, 0.7); */
}
main > div {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin: 30px 0px 0px 0px;
padding: 15px 30px;
border-radius: 0.4em;
}
#info {
font-size: 30px;
font-weight: 700;
color: var(--point-color);
}
#home_info {
background-color: rgba(255, 255, 255, 0.7);
}
ul {
list-style: none;
border-radius: 0.4em;
padding: 3px 10px;
margin-left: 30px;
background-color: rgba(255, 255, 255, 0.7);
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
ul > div {
font-weight: 500;
font-size: 20px;
color: #fff;
background-color: var(--point-color);
border-radius: 0.4em;
position: relative;
padding: 6px 0;
top: -10px;
text-align: center;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
li {
font-weight: 500;
margin: 10px 0;
/* border: medium solid var(--point-color);
border-radius: 0.4em; */
color: var(--point-color);
padding: 6px 36px;
}