-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (77 loc) · 1.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
header{
display: flex;
justify-content: space-around;
gap: 10px;
margin-top: 20px;
padding: 5px;
}
header select{
flex-grow: 2;
}
div{
width: 20%;
height: 400px;
}
main{
display: flex;
margin-top: 30px;
}
section{
height: 360px;
}
h3{
text-align: center;
color: azure;
}
button{
cursor: pointer;
padding: 10px;
font-weight: bold;
background-color: greenyellow;
border-radius: 10px;
}
input{
height: 40px;
}
select{
border-radius: 20px;
text-align: center;
text-transform: capitalize;
font-weight: bold;
}
body{
background: #E8CBC0; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #636FA4, #E8CBC0); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #636FA4, #E8CBC0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin-top: 0;
display: flex;
flex-direction: column;
margin: 0;
}
h3{
cursor: pointer;
}
footer{
display: flex;
margin-top: 180px;
justify-content: center;
align-items: flex-end;
}
.desc{
margin: 0;
padding: 10px;
font-family: 'Rubik Microbe', cursive;
display: flex;
align-items: center;
justify-content: space-between;
color: white;
}
h1,h2{
margin: 0;
}
h1{
font-size: 30px;
}
h2{
font-size: 15px;
}