-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathif-statem.css
More file actions
62 lines (57 loc) · 1.2 KB
/
if-statem.css
File metadata and controls
62 lines (57 loc) · 1.2 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
* {
padding: 0;
margin: 0;
font-family: Arial;
}
body {
background: linear-gradient(to right, rgba(89, 133, 214,0.75),rgba(169, 41, 173, 0.75));
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 350px;
height: 400px;
border-radius: 15px;
background: linear-gradient(to left, rgba(89, 133, 214,0.75),rgba(169, 41, 173, 0.75));
}
h4 {
text-align: center;
background-color: linear-gradient(to top rgba(89, 133, 214,0.75),rgba(169, 41, 173, 0.75));
padding: 15px;
margin: 15px;
}
p {
text-align: center;
font-size: 20px;
font-weight: bold;
text-shadow: 0,3px 5px;
color: aqua;
margin-top: 30px;
}
#btn {
background: linear-gradient(to bottom, rgba(89, 133, 214,0.75),rgba(9, 83, 243,0.75));
color: white;
padding: 20px;
border: 1px solid black;
border-radius: 10px;
cursor: pointer;
margin-left: 50px;
}
h5 {
text-align: center;
color: black;
margin: 15px;
}
.btn:hover {
background-color: orange;
}
.container input {
padding: 10px;
outline: none;
position: relative;
cursor: pointer;
margin: 10px auto;
}