-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (55 loc) · 1.01 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
@charset "UTF-8";
* {
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
header {
background: linear-gradient(to right, #346f97, #9ac6e2);
padding: 20px;
text-align: center;
}
main {
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
padding-top: 50px;
background-color: white;
}
input {
width: 40%;
padding: 10px;
font-size: large;
border: none;
outline: none;
background-color: #ebebeb;
border-radius: 5px;
}
button {
font-size: medium;
color: white;
background-color: #5485a7;
padding: 15px;
border-radius: 10px;
border: none;
transition: 0.125s;
}
button:hover {
background-color: #3f6681;
}
button:active {
background-color: #598fb6;
}
div {
background-color: #cfcfcf;
border-radius: 10px;
width: 50vw;
height: 40vh;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
}