-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (96 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (96 loc) · 1.99 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
background-image: linear-gradient(to right, #6d7a81, #193652);
}
header{
background-image: linear-gradient(to right,#6d7a81, #193652);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
row-gap: 10px;
}
input{
height: 30px;
width: 300px;
border-radius: 10px;
background: transparent;
border: 2px solid #193652;
font-size: 15px;
}
button{
height: 30px;
width: 100px;
border-radius: 10px;
cursor: pointer;
border: none;
background-color: rgb(170, 60, 19);
color: #bbb;
}
#div2{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
row-gap: 10px;
width: 900px;
}
#div3{
width: 1900px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
border-top: 5px solid #193652;;
row-gap: 15px;
}
#div3>button{
height: 30px;
width: 50px;
border-radius: 1px;
background-color: transparent;
font-size: 15px;
}
#div3>button:hover{
border-bottom: 5px solid rgb(209, 96, 133);
}
#bodydiv1{
width: auto;
display: flex;
justify-content:center;
flex-wrap: wrap;
box-shadow: 5px 5px 5px 5px wheat;
}
audio{
width: 210px;
}
.S901{
width: 230px;
box-shadow: 3px 3px 3px 3px wheat;
align-self: center;
margin: 20px;
cursor: pointer;
}
.S901:hover{
box-shadow: 5px 5px 5px 5px rgb(134, 47, 76);
}
footer{
display: flex;
align-items:flex-start;
width: 1350px;
height: 200px;
justify-content: space-around;
padding-top: 10px;
border-top: 5px solid #193652;
margin-top: 20px;
row-gap: 20px;
}
a{
text-decoration: none;
color: #bbb;
}
a:hover{
color: #193652;
}