-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (106 loc) · 2.25 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (106 loc) · 2.25 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Overpass:ital,wght@0,700;1,400&family=Poppins:ital,wght@0,700;1,400;1,800&display=swap');body{
font-family:Outfit;
font-weight:600;
color:hsl(0, 0%, 10%);
background-color:hsl(0, 0%, 94%);
}
.main-box {
background-color: hsl(0, 0%, 100%);
position:absolute;
left: 50%;
top:50%;
transform: translate(-50%,-50%);
width:700px;
height: 550px;
min-width: 375px;
max-width: 1440px;
border-radius:20px 20px 200px 20px;
}
.inner-box {
margin:3% 9%;
}
.inputs {
display:flex;
justify-content:flex-start;
}
#input-box {
padding-right:10%;
}
#input-box input {
height: 50px;
width:120px;
border:1px solid hsla(0, 0%, 42%, 0.311);
border-radius: 5px;
margin-top:-3%;
cursor: pointer;
font-size:25px;
font-weight:700;
padding-left:18%;
}
/* #input-box.day-input:focus {
border: 2px solid hsl(259, 100%, 65%);
outline:none;
} */
#input-box p {
font-size:11px;
color:hsl(0, 1%, 44%);
font-weight:700;
}
#input-box span {
font-size:12px;
font-weight: 400;
}
.year-input::placeholder,
.month-input::placeholder,
.day-input::placeholder {
position:absolute;
font-size:25px;
font-weight:700;
left:15%;
bottom:20%;
color:hsl(0, 0%, 51%);
}
.inputs input::-webkit-inner-spin-button,
.inputs input::-webkit-outer-spin-button {
-webkit-appearance: none;
}
.line-button {
margin-top:8%;
}
.seperator {
height:1px;
background-color:hsla(0, 0%, 69%, 0.415);
width:90%;
}
.arrow-button {
position:absolute;
left:80%;
margin-top:-39px;
border-radius:70px;
border-style:none;
background-color:hsl(259, 100%, 65%);
padding:20px;
cursor: pointer;
}
.arrow-button:hover {
background-color: rgba(0, 0, 0, 0.97);
}
.results {
font-size:90px;
font-weight:800;
margin-top:-7%;
}
.results p {
margin-bottom:-20%;
}
.results span {
color:hsl(259, 100%, 65%);
padding-right:10px;
}
/* .error span{
color: red;
}
.error.pp{
color:red;
}
*/