-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (103 loc) · 1.92 KB
/
Copy pathstyles.css
File metadata and controls
129 lines (103 loc) · 1.92 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
122
123
124
125
126
127
128
129
@import './fonts.css';
* {
box-sizing: border-box;
margin: 0;
}
p {
margin-top: 0;
margin-bottom: 0;
color: #FFFFFF;
}
body {
font-family: 'Yeseva One';
}
#weekDay {
font-size: 24px;
line-height: 30px;
text-transform: uppercase;
text-shadow: 2px 2px 0px #8a8a8a;
}
#date {
font-size: 35px;
line-height: 38px;
text-transform: uppercase;
text-shadow: 2px 2px 0px #8a8a8a;
}
#wish {
font-size: 36px;
line-height: 39px;
text-align: center;
font-family: 'Corinthia';
display: flex;
align-items: center;
}
#time {
font-size: 80px;
line-height: 86px;
text-shadow: 2px 2px 0px #8a8a8a;
display: flex;
align-items: center;
justify-content: center;
}
#container {
height: 100vh;
width: 100%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr;
}
.date-box,
.wish-box {
width: 100%;
display: flex;
padding: 20px;
flex-direction: column;
gap: 30px;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, .1)
}
@media (min-width: 768px) {
#date {
font-size: 56px;
line-height: 59px;
}
#wish {
font-size: 56px;
line-height: 60px;
}
#time {
font-size: 130px;
line-height: 140px;
text-shadow: 2px 4px 0px #8a8a8a;
}
#weekDay {
font-size: 40px;
line-height: 45px;
}
}
@media (min-width: 1024px) {
#date {
font-size: 88px;
line-height: 100px;
text-shadow: 2px 4px 0px #8a8a8a;
}
#wish {
font-size: 76px;
line-height: 80px;
}
#time {
font-size: 180px;
line-height: 190px;
}
#weekDay {
font-size: 50px;
line-height: 56px;
text-shadow: 2px 4px 0px #8a8a8a;
}
}
@media (min-width: 1024px) {
#wish {
max-width: 1400px;
}
}