-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (100 loc) · 2.3 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (100 loc) · 2.3 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
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&display=swap");
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-image: url(https://images.pexels.com/photos/773953/pexels-photo-773953.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
background-position: center;
background-repeat: no-repeat;
}
.put-date {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 80%;
margin: 10rem auto 0 auto;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.put-date .page-head {
font-family: 'Dancing Script', cursive;
padding-bottom: 2rem;
font-size: 3rem;
text-align: center;
}
.put-date .date-box {
padding-left: 1rem;
font-size: 3rem;
width: 50%;
border-radius: 50px;
text-align: center;
}
.put-date .sub-but {
margin-top: 2rem;
width: 50%;
height: 3rem;
border-radius: 50px;
}
.container {
font-family: 'Dancing Script', cursive;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.container h1 {
margin: 10rem 0 5rem 0;
font-weight: bold;
font-size: 4rem;
}
.container .countdown-container {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
font-family: 'Dancing Script', cursive;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: center;
font-size: 2rem;
width: 60%;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.container .countdown-container .count-item {
margin: 2rem;
}
@media screen and (max-width: 1200px) {
.put-date .date-box {
font-size: 1.5rem;
}
.container h1 {
font-size: 2rem;
}
}
@media screen and (max-width: 600px) {
.put-date .date-box {
font-size: 0.8rem;
}
.container h1 {
font-size: 1.5rem;
}
}
/*# sourceMappingURL=style.css.map */