forked from SamVanTassel/Person-Finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (67 loc) · 1.36 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
/* background-color: rgb(224, 224, 224); */
background-image: -webkit-linear-gradient(
90deg,
rgba(235, 235, 235, 0.66),
rgba(128, 128, 128, 0.66)
);
}
h1 {
font-size: 2rem;
/* width: 450px; */
text-align: center;
font-family: 'Roboto Slab', serif;
color: rgb(39, 39, 39);
margin: 0.3rem auto;
}
p {
font-family: 'Roboto Slab', serif;
font-size: large;
color: rgb(63, 63, 63)
}
section {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0 1rem;
}
.submit {
color:honeydew;
padding: 0.6rem 1rem;
border: solid 1px rgb(184, 184, 184);
border-radius: 25px;
font-family: 'Roboto Slab', serif;
background-image: -webkit-linear-gradient(
90deg,
rgb(61, 149, 145),
rgb(136, 240, 205)
);
font-size: 1rem;
}
.nameInput {
width: 222px;
border: solid 1px rgb(184, 184, 184);
border-radius: 25px;
padding: 0.6rem;
font-family: 'Roboto Slab', serif;
text-align: center;
font-size: 0.9rem;
}
.nameInput:focus {
outline: none;
}
.nameInput:hover {
box-shadow: 0px 2px 8px rgba(133, 133, 133, 0.66);
}
.submit:hover {
box-shadow: 0px 2px 8px rgba(77, 77, 77, 0.66);
}