-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplashStyle.css
More file actions
87 lines (71 loc) · 1.36 KB
/
splashStyle.css
File metadata and controls
87 lines (71 loc) · 1.36 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
*{
margin: 0;
padding: 0;
}
body{
background-color: palegoldenrod;
}
.parent{
display: flex;
flex-direction: column;
width: 100%;
justify-content: center;
text-align: center;
position: absolute;
top: 20%;
align-items: center;
}
#main {
justify-content: center;
text-align: center;
width: 100%;
display: flex;
color: #4E342E;
font-size: 100px;
font-family: 'Acme', sans-serif;
animation: ticTacToe;
animation-duration: 3s;
animation-iteration-count: 1;
}
.element{
padding: 20px;
}
@keyframes ticTacToe {
0%{
font-size: 10px;
}
}
.buttons{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.button{
background-color:lightcyan;
padding: 3px 60px;
font-size: 40px;
margin: 8px;
color: #4E342E;
border: solid #4E342E 5px;
font-family: 'Acme', sans-serif;
border-radius: 20px;
cursor: pointer;
}
@media screen and (max-width : 573px) {
.parent{
top: 0%;
margin: 15% 0%;
}
#main{
flex-direction: column;
font-size: 60px;
}
.element{
padding: 3px;
}
.button{
font-size: 20px;
padding: 3px 30px;
}
}