forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (117 loc) · 2.03 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100vh;
background: linear-gradient(135deg,#8E2DE2,#4A00E0);
}
.container{
background-color: #202020;
height: 567px;
width: 410px;
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-radius: 8px;
box-shadow: 0 20px 25px rgba(0,0,0,0.35);
padding: 0 50px;
}
.container *{
border: none;
outline: none;
font-family: "Poppins",sans-serif;
font-weight: 600;
font-size: 12px;
letter-spacing: 0.5px;
}
input{
display: block;
height: 40px;
width: 300px;
position: absolute;
background-color: #4d4d4d;
color: #ffffff;
padding: 0 15px;
font-weight: 300;
border-radius: 5px;
}
label{
display: inline-block;
color: #e5e5e5;
cursor: pointer;
font-size: 12px;
position: absolute;
}
#word1{
bottom: 299px;
}
label[for = "word1"]{
bottom: 356px;
}
#word2{
bottom: 243px;
}
#result{
bottom: 91px;
}
label[for = "result"]{
bottom: 148px;
}
::placeholder{
color: transparent;
}
.my-style::placeholder{
color: #a5a5a5;
}
button{
width: 300px;
position: absolute;
bottom: 182px;
padding: 15px 0;
background-color: #8E2DE2;
color: #ffffff;
border-radius: 5px;
}
#title{
border: none;
outline: none;
font-family: "Poppins",sans-serif;
font-weight: 400;
font-size: 23px;
text-align: justify;
letter-spacing: 0.5px;
position: relative;
color: #ffffff;
top: 43px;
left: 24px;
}
#anagram{
border: none;
outline: none;
font-family: "Poppins",sans-serif;
font-weight: 200;
font-size: 16px;
text-align: justify;
letter-spacing: 0.5px;
position: relative;
color: #ffffff;
top: 64px;
left: 1px;
}
#reset{
width: 85px;
position: absolute;
bottom: 25px;
left: 263px;
padding: 15px 0;
background-color: #8E2DE2;
color: #ffffff;
border-radius: 5px;
}