-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (67 loc) · 1.19 KB
/
style.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
body {
background-color: #e2ece9;
}
.header {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 1rem;
}
.header img {
width: 5rem;
height: 5rem;
margin-right: 1rem;
}
.header h1 .letter1 {
color: #ff70a6;
}
.header h1 .letters {
color: #ff9770;
}
.header h1 .symbol {
color: #70d6ff;
}
.content h2 {
font-size: 30px;
text-align: center;
margin-top: 0;
color: #2b2d42;
}
h2 span {
border: solid 4px #ff70a6;
background-color: #708d81a4;
padding: 0.2rem 0.5rem 0.2rem 0.5rem;
}
.content .btn-container {
display: flex;
justify-content: center;
padding: 1.5rem;
}
.btn-container .btn {
width: 180px;
height: 180px;
border: 5px solid #03045e;
margin: 0.5rem;
}
.btn-container .btn:hover {
cursor: pointer;
}
.orange {
background-color: #ffac81;
border-radius: 170px 10px 10px 10px;
}
.pink {
background-color: #ff6392;
border-radius: 10px 10px 10px 170px;
}
.blue {
background-color: #8093f1;
border-radius: 10px 170px 10px 10px;
}
.green {
background-color: #84dcc6;
border-radius: 10px 10px 170px 10px;
}
.flash {
background-color: #fff;
}