-
Notifications
You must be signed in to change notification settings - Fork 47
/
styles.css
55 lines (44 loc) · 898 Bytes
/
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
/* Base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.flex-container {
border: 10px solid #7f00ff;
}
.flex-item {
padding: 10px;
font: 900 60px "Roboto", sans-serif;
color: #fff;
text-align: center;
text-shadow: 4px 2px 0 rgba(0, 0, 0, 0.2);
}
.item-1 {
background-image: linear-gradient(45deg, #ff8177, #cf556c);
}
.item-2 {
background: linear-gradient(45deg, #84fab0, #8fd3f4);
}
.item-3 {
background: linear-gradient(45deg, #a6c0fe, #f68084);
}
.item-4 {
background: linear-gradient(45deg, #d4fc79, #96e6a1);
}
.item-5 {
background: linear-gradient(45deg, #43e97b, #38f9d7);
}
.item-6 {
background: linear-gradient(45deg, #a18cd1, #fbc2eb);
}
.item-7 {
background: linear-gradient(45deg, #8e2de2, #4a00e0);
}
.item-8 {
background: linear-gradient(45deg, #e1eec3, #f05053);
}
/* Custom styles */
.flex-container {
display: flex;
}