-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (114 loc) · 1.82 KB
/
style.css
File metadata and controls
121 lines (114 loc) · 1.82 KB
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
120
* {
font-family: 'Playfair Display', serif;
}
body {
font-family: sans serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: #FDE5EC;
}
.head {
font-size: 70px;
margin: 10px;
color: darkred;
font-family: 'Kanit', sans-serif;
}
h2{
font-size: 28px;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
height: 400px;
width: 400px;
/* border: 2px solid black; */
}
.container > div {
height: 160px;
width: 160px;
border: 6px solid black;
border-radius: 30px;
}
.yellow {
background-color: rgb(192, 22, 73);
}
.red {
background-color: skyblue;
}
.purple {
background-color: rgba(255, 68, 0, 0.801);
}
.blue {
background-color: rgb(0, 89, 255);
}
.flash {
background-color: white;
}
.userflash {
background-color: green;
}
.start-btn {
height: 80px;
width: 250px;
margin-top: 30px;
border-radius: 40px 10px;
background-color: #c4d7b2;
font-size: 35px;
font-weight: 600;
box-shadow: 3px 3px grey;
font-family: 'Kanit', sans-serif;
}
.start-btn:hover {
box-shadow: 0 0 20px rgba(9, 117, 241, 0.8);
}
@media (max-width: 480px) {
.head {
font-size: 35px;
margin: 5px;
}
h2 {
font-size: 10px;
margin: 5px;
}
.container {
height: 330px;
width: 330px;
}
.container > div {
height: 140px;
width: 140px;
}
.start-btn {
height: 55px;
width: 170px;
margin-top: 15px;
}
}
@media (max-width: 768px) {
.head {
font-size: 45px;
margin: 0px;
}
h2 {
font-size: 20px;
margin: 10px;
}
.container {
height: 350px;
width: 350px;
}
.container > div {
height: 140px;
width: 140px;
}
.start-btn {
height: 65px;
width: 180px;
margin-top: 15px;
}
}