-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (116 loc) · 2.21 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (116 loc) · 2.21 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
120
121
/* 모든 텍스트에 배경 투명도 줄 것 그리고 쉐도우 작업 */
/* 비디오를 맨 밑 레이어에 둘 것 */
/* 소리 재생 되게 할 것 */
video {
filter: brightness(0.5);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
position: absolute;
top: 0px;
z-index: -1;
display: flex;
flex-wrap: nowrap;
}
/* user_component */
.readability {
color: white;
}
body {
display: flex;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
margin: 0;
padding: 0;
text-shadow: 2px 2px 4px red;
flex-direction: column;
background-color: #292929;
}
.welcome {
display: flex;
flex-direction: column;
justify-self: center;
align-items: center;
}
.welcome span:first-child {
margin-top: 60px;
font-size: 60px;
}
.welcome span:nth-child(2) {
font-size: 20px;
}
.welcome span:last-child {
font-size: 40px;
}
.hidden {
display: none;
}
/* 투두리스트 디자인 */
input {
text-align: center;
border: none;
background-color: rgba(0, 0, 0, 0);
/* border-bottom: 1px solid white; */
color: white;
font-size: 40px;
transition: border 1s ease-in-out, border-radius 3s ease-in-out;
}
input:focus {
outline: none;
border: 1px solid white;
border-radius: 30px;
text-align: center;
}
#weather {
position: absolute;
bottom: 50px;
}
.quotes {
position: absolute;
bottom: 3px;
text-align: center;
display: flex;
flex-direction: column;
}
.DW {
position: absolute;
bottom: 10%;
right: 5%;
border: 1px solid white;
padding: 20px;
border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 20px;
width: 300px;
}
.DW div {
display: flex;
align-items: center;
}
.DWtimer {
width: 208px;
font-size: 80px;
border: 1px solid white;
padding: 0 10px;
border-radius: 10px;
}
.DW div div {
display: flex;
flex-direction: column;
align-items: flex-start;
border: 1px solid white;
border-radius: 10px;
padding: 10px;
}
button {
background-color: rgba(0, 0, 0, 0);
color: white;
border: 1px solid white;
font-size: 20px;
border-radius: 10px;
}