-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
111 lines (108 loc) · 1.89 KB
/
style1.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
body{
margin: 0;
padding: 0;
background-color: #1F232C;
font-family: 'Abril Fatface', cursive;
}
h2{
font-weight: 400;
margin-left: 37px;
}
.info{
background-color: #B1D4E0;
width:20rem;
padding: 0.5rem;
margin: 1rem;
border-radius: 1rem;
color:#000;
font-weight: 800;
font-size: 1rem;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
box-shadow:5px 5px 5px #FFf;
}
@media (max-width:700px){
.info{
width:90%;
}
h1{
text-align: start;
margin-left:1rem;
}
}
h1{
text-align: center;
color: #fff;
letter-spacing: 4px;
font-size: 3rem;
font-weight: 500;
padding-bottom: 10px;
}
.container{
background-color: black;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
height:30rem;
width:30rem;
row-gap: 1rem;
column-gap: 1rem;
margin: 0 auto;
padding: 1.2rem;
border-radius: 50%;
position: relative;
}
.btn{
background: red;
}
.green{
border-top-left-radius: 100%;
background-color: green;
}
.red{
border-bottom-left-radius: 100%;
background-color:red;
}
.blue{
border-bottom-right-radius: 100%;
background-color: blue;
}
.yellow{
border-top-right-radius: 100%;
background-color: yellow;
}
.circle{
position: absolute;
background-color: black;
height:10rem;
width:10rem;
top:11rem;
left:11rem;
color: #FFF;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
flex-wrap: wrap;
}
.circle h2{
color:#D1D0D0;
font-size: 2.3rem;
margin: 0;
letter-spacing: 4px;
}
.play_icon{
margin: 1rem;
}
i{
font-size: 2.5rem;
}
.flash{
background-color: #fff;
}
.userflash{
background-color: rgba(171, 185, 169, 0.663);
}
footer{
background-color: #1F232C;
height:5vh
}