style.css
1.51 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
:root {
--main-bg-color: #6e87cf;
--point-color: #44090d;
}
h1 {
color: #e9dacc;
font-size: 4.5em;
font-weight: 900;
/* text-shadow: 2px 2px #191766;*/
text-shadow: #44090d 1px 1px, #44090d 0px 0px, #44090d 1px 1px,
#44090d 2px 2px, #44090d 3px 3px, #44090d 4px 4px, #44090d 5px 5px,
#44090d 6px 6px, #44090d 7px 7px, #44090d 8px 8px, #44090d 9px 9px,
#44090d 10px 10px, #44090d 11px 11px, #44090d 12px 12px, #44090d 13px 13px,
#44090d 14px 14px, #44090d 15px 15px, #44090d 16px 16px, #44090d 17px 17px,
#44090d 18px 18px, #44090d 19px 19px;
}
h4 {
font-weight: 300;
}
* {
font-family: "Noto Sans KR", sans-serif;
}
body {
background-color: var(--main-bg-color);
background: no-repeat fixed 50% 50% url("../src/background.jpg");
color: var(--point-color);
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 10%;
left: 10%;
/* background-color: rgb(250, 250, 250, 0.5);
border-radius: 0.8rem;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
width: 80%;
height: 80%;
color: var(--point-color);
}
main > form {
display: flex;
align-items: flex-end;
font-weight: 500;
}
main > form > div {
display: flex;
flex-direction: column;
padding: 10px;
}
input {
margin: 10px 0px;
padding: 5px 10px;
border: 0;
border-radius: 0.4em;
}
.btn:hover {
background-color: var(--point-color);
color: #fff;
cursor: pointer;
}
.btn:active {
position: relative;
top: 1px;
left: 1px;
}