-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (55 loc) · 908 Bytes
/
style.css
File metadata and controls
62 lines (55 loc) · 908 Bytes
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
body,
main {
background: linear-gradient(
135deg,
#1e5799 0%,
#207cca 61%,
#207cca 82%,
#207cca 82%,
#2989d8 100%,
#7db9e8 100%
);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 600px;
margin: 30px auto;
background-color: aliceblue;
border-radius: 5px;
box-shadow: 3px 3px 10px #333333;
}
header {
width: 100%;
padding: 30px 0px 70px 0px;
text-align: center;
}
h1 {
margin-bottom: 50px;
}
header input {
background-color: #7db9e8;
padding: 10px;
width: 50%;
border: none;
color: #fff;
}
input::placeholder {
color: #fff;
}
input:focus {
outline: none !important;
box-shadow: 0px 0px 10px #7db9e8;
}
main {
width: 90%;
border-radius: 1px;
padding-top: 50px;
padding-bottom: 50px;
margin-bottom: 30px;
font-size: 1.4rem;
color: #fff;
text-align: center;
line-height: 1.6;
}