forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (87 loc) · 1.41 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
98
99
100
101
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
user-select: none;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #fff;
background-color: #3e3e3e;
}
#text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 2px solid #fff;
border-radius: 10px;
padding: 1rem;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
background-color: #1e1e1e;
padding: 2rem;
margin: 10px 0;
}
#dmy-container {
display: flex;
flex-direction: column;
}
#date-container,
#month-container,
#year-container {
color: #fff;
padding: 20px 50px;
}
#date-dd,
#month-dd,
#year-ip {
width: 120px;
text-align: center;
outline: none;
}
#date-dd,
#year-ip {
margin-left: 45px;
}
#month-dd {
margin-left: 33px;
}
.button {
color: #fff;
background-color: transparent;
border: 2px solid #fff;
border-radius: 10px;
padding: 7px 12px;
cursor: pointer;
}
#day-button:hover {
background-color: #3e3e3e;
transition: 1s;
}
#reset-button {
background-color: #f00;
}
#result {
display: none;
background-color: #3e3e3e;
border: 2px solid #fff;
border-radius: 10px;
margin: 20px;
padding: 10px;
}
#date-span,
#day {
font-weight: bold;
text-decoration: underline;
}