forked from Subhradeep10/Amazing_Web_Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (91 loc) · 1.45 KB
/
style.css
File metadata and controls
102 lines (91 loc) · 1.45 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
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: #cff;
}
.container{
width: 40%;
min-width: 450px;
position: absolute;
transform: translate(-50%,-50%);
left: 50%;
top: 50%;
padding : 50px 30px;
}
.container *{
font-family: sans-serif;
border:none;
outline: none;
}
.input{
background-color: #080808;
padding: 30px 25px;
border-radius: 8px;
box-shadow: 0 15px 20px rgba(0,0,0,0.3);
margin-bottom: 50px;
}
input,button{
height: 50px;
background-color: #ffffff;
color:#080808;
font-weight: 500px;
border-radius: 5px ;
}
input{
width:60%;
padding: 0 20px;
font-size: 14px;
}
button{
width: 30%;
float: right;
}
.output{
width: 100%;
display: flex;
justify-content: space-between;
}
.output div{
height: 100px;
width: 100px;
background-color: #080808;
border-radius: 5px;
color:#fff;
display: grid;
text-align:center;
align-items: center;
padding: 20px 0;
box-shadow: 0 15px 20px rgba(0,0,0,0.3);
}
span{
font-size: 30px;
font-weight: 500;
}
p{
font-size: 14px;
color: #707070;
font-weight: 400;
}
.wish{
visibility: hidden;
}
.bday{
visibility: visible;
height: 60px;
width: 300px;
position: absolute;
top:340px;
left: 120px;
font-weight: 600;
font-size: 20px;
background-color: #cdee87;
border-radius: 15px;
border:3px solid black;
overflow: hidden;
text-align: center;
}