-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
97 lines (85 loc) · 1.57 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
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
height: 100%;
background: linear-gradient(243.18deg, #000061 0%, #000327 100%);
background-attachment: fixed;
background-repeat: no-repeat;
font-family: "Noto Sans KR", sans-serif;
}
main {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 40px 0px;
background: url("images/bg-stars.png") center top;
}
.title {
color: white;
font-size: 24px;
}
.weather-info {
color: white;
font-size: 16px;
}
.weather-card-wrapper {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 250px;
height: 420px;
margin: 30px 0px;
border-radius: 20px;
border: 1px solid #000000;
box-shadow: 0px 0px 30px 10px #7c3fd6;
overflow: hidden;
}
.weather-img {
position: absolute;
height: 100%;
}
.person-img {
position: absolute;
top: 100px;
height: 70%;
}
.date-picker {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 32px;
margin-bottom: 4px;
border-radius: 100px;
border: none;
background: linear-gradient(94.42deg, #ff0078 0%, #803bab 100%);
font-size: 16px;
color: white;
cursor: pointer;
}
.date-card-wrapper {
width: 200px;
height: auto;
border-radius: 20px;
overflow: hidden;
}
.date-card {
display: flex;
align-items: center;
justify-content: center;
background-color: white;
padding: 16px 16px;
cursor: pointer;
}
.date-card:hover {
background-color: lightgray;
}
.hidden {
visibility: hidden;
}