-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (86 loc) · 2.02 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url(https://www.itl.cat/pngfile/big/125-1251216_wallpaper-for-background-px-love-message-for-best.jpg);
/* background-image: url(https://c8.alamy.com/comp/2CH5WB6/white-hearts-with-pink-hue-on-pink-background-symbol-of-love-and-valentines-day-modern-and-trendy-conceptual-abstract-background-seamless-pattern-2CH5WB6.jpg); */
/* background-color: pink; */
font-family: poppins;
background-repeat: no-repeat;
background-size: cover;
}
.container{
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
height: 80vh;
width: 60vw;
box-shadow: inset -8px -8px 12px rgb(226, 79, 103),
inset 8px 8px 12px rgb(201,95,114);
border-radius: 50px;
}
.content{
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
}
.content img{
width: 80px;
margin-left: 170px;
}
.content h1{
text-transform: uppercase;
text-align: center;
color: #d7385c;
}
.inputarea{
display: flex;
}
.inputarea input{
width: 200px;
height: 30px;
text-align: center;
margin: 5px;
outline: none;
border-radius: 10px;
border: 2px solid #d7385c;
padding: 20ox 40px;
font-size: 20px;
}
a{
display: flex;
justify-content: center;
text-decoration: none;
background-color: #d7385c;
padding: 10px;
margin: 0px 6px;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
color: #fff;
border-radius: 10px;
}
#print{
display: flex;
justify-content: center;
background-color: #d7385c;
margin: 20px;
padding: 20px 50px;
color: #fff;
text-transform: uppercase;
font-size: 20px;
border-radius: 10px;
text-align: center;
}
#satement{
display: flex;
justify-content: center;
margin-top: 50px;
text-transform: uppercase;
font-size: 20px;
color: #da1c48;
}