-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (62 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (62 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100%;
padding: 100px;
background-color: #4158D0;
background-image: linear-gradient(135deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
#wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 30px;
color: white;
}
p {
color: beige;
}
input {
text-align: center;
border: none;
margin-top: 25px;
margin-bottom: 15px;
box-shadow: 1px 1px 5px black;
height: 40px;
width: 400px;
}
button {
height: 30px;
width: 120px;
margin-bottom: 15px;
border: none;
background-color: rgba(250, 250, 210, 0.50);
color: white;
transition: all 0.6s linear 0s;
}
button:hover {
transform: scale(1.08);
border: 1px solid azure;
}
.content {
width: 300px;
height: auto;
background-color: aliceblue;
}
#heroImage {
gap: 10px;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
border: 1px solid black;
box-shadow: 1px 1px 5px;
}
#heroImage p {
color: black;
}