-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (101 loc) · 1.61 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
background-color: rgb(20 31 58);
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
h3 {
color: #eaeaea;
text-transform: uppercase;
}
hr {
width: 100%;
color: #eaeaea;
}
button {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}
audio,
video {
margin: 8px 12px;
}
audio:first-child,
video:first-child {
margin-left: 0;
}
audio:last-child,
video:last-child {
margin-right: 0;
}
video {
border: 1px #eaeaea solid;
width: 340px;
height: 280px;
}
.main {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
.section {
display: flex;
justify-content: center;
}
.button {
display: flex;
justify-content: center;
padding: 17px 27px;
background-color: rgb(46, 86, 204);
border-radius: 40px;
margin: 10px;
color: #eaeaea;
cursor: pointer;
text-align: center;
text-transform: uppercase;
}
button:disabled {
pointer-events: none;
opacity: 0.4;
}
.button i {
margin-left: 10px;
font-size: x-large;
}
.button:first-child {
margin-left: 0;
}
.button:last-child {
margin-right: 0;
}
.gradient {
transition: 0.5s;
background-size: 200% auto;
background-image: linear-gradient(
to right,
#8a258d 0%,
#4389a2 51%,
#5c258d 100%
);
}
.gradient:hover {
background-position: right center;
color: #fff;
text-decoration: none;
}
.gallery {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
}