-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (88 loc) · 1.67 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
body {
background: linear-gradient(
90deg,
rgba(255, 0, 0, 0.09) 0%,
rgba(255, 154, 0, 0.09) 10%,
rgba(208, 222, 33, 0.09) 20%,
rgba(79, 220, 74, 0.09) 30%,
rgba(63, 218, 216, 0.09) 40%,
rgba(47, 201, 226, 0.09) 50%,
rgba(28, 127, 238, 0.09) 60%,
rgba(95, 21, 242, 0.09) 70%,
rgba(186, 12, 248, 0.09) 80%,
rgba(251, 7, 217, 0.09) 90%,
rgba(255, 0, 0, 0.09) 100%
);
}
h1 {
font-family: cursive;
color: white;
text-align: center;
margin-top: 24px;
}
div {
background-color: rgba(155, 38, 182, 0.07);
}
#container {
width: 466px;
height: 288px;
display: block;
position: relative;
margin: auto;
border-radius: 0px;
border-top-left-radius: 10000px;
}
.cycle {
height: 100%;
width: 38.2%;
float: right;
border-radius: 0px;
border-top-right-radius: 10000px;
}
.cycle > div {
height: 38.2%;
width: 38.2%;
position: absolute;
bottom: 0;
border-radius: 0px;
border-bottom-right-radius: 10000px;
}
.cycle > div > div {
height: 100%;
width: 38.2%;
float: left;
border-radius: 0px;
border-bottom-left-radius: 10000px;
}
.cycle > div > div > div {
height: 38.2%;
width: 38.2%;
position: absolute;
top: 0;
border-radius: 0px;
border-top-left-radius: 10000px;
}
.sparkle {
width: 100%;
display: block;
text-align: center;
position: relative;
bottom: 0;
margin-top: 24px;
background: none;
}
@media (max-width: 699px) {
#container {
width: 233px;
height: 144px;
}
h1 {
margin-top: 124px;
}
}
@media (min-width: 1000px) and (min-height: 750px) {
#container {
width: 932px;
height: 576px;
}
}