-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 1.14 KB
/
style.css
File metadata and controls
61 lines (61 loc) · 1.14 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
*{
box-sizing: border-box;
margin: 0;
padding: 0
}
span,a,label{
display: inline-block
}
body{
height: 100vh;
background-image: linear-gradient(rgba(255, 0, 0, 0.39), rgba(0, 0, 255, 0.616), rgba(0, 0, 0, 0.377)), url(logo-search-grid-1x.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.jersey-15-regular {
font-family: "Jersey 15", sans-serif;
font-weight: 400;
font-style: normal;
}
h1{
color: darkblue;
text-align: center;
font-family: "Jersey 15", sans-serif;
font-weight: 100;
font-size: 50px;
}
p{
color: darkblue;
text-align: center;
font-family: "Jersey 15", sans-serif;
font-weight: 100;
font-size: 30px;
}
#section{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
margin: 70px;
}
.radius{
width: 70%;
}
.child{
width: 300px;
height: 300px;
background: teal;
transition: 6.6s ease-in-out;
}
#inputfeild{
width: 20%;
}
ul{
list-style: none;
}
label{
font-family: "Jersey 15", sans-serif;
font-weight: 100;
font-size: 36px;
}