-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (103 loc) · 2.26 KB
/
style.css
File metadata and controls
122 lines (103 loc) · 2.26 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
121
122
html,body{
background-color: aqua;
font-family: Verdana, Geneva, Tahoma, sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.heading{
width: max-content;
position: absolute;
margin: 0 auto;
top: 0;
font-size: 2em;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
background: linear-gradient(90deg, #182868, #ff0000);
background-clip: text;
color: #ffffff00;
}
.Main{
width: 100%;
height:100%;
display: flex;
justify-content: space-evenly;
flex-direction: column;
}
.board{
width: 300px;
height: 300px;
display: flex;
justify-content: space-evenly;
flex-direction: column;
}
.row{
height: 30%;
display: flex;
justify-content: space-evenly;
}
.col{
perspective: 200px;
z-index: 0;
width: 30%;
height: 100%;
background: rgb(24, 40, 104);
border-radius: 5px;
box-shadow: 4px 2px 7px 1px rgb(81, 88, 163);
display: flex;
align-items: center;
justify-content: center;
font-size: 5em;
font-family: "Sour Gummy", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
font-variation-settings:
"wdth" 100;
color: aqua;
}
.winner{
transition-delay:0.5s ;
z-index: -1;
opacity: 0;
width: 100%;
height: 100%;
background-color: rgba(45, 200, 31, 0.541);
position: absolute;
left:50%;
transform: translateX(-50%);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
h1,p{
margin :2px;
}
h1{
font-family:Arial, Helvetica, sans-serif;
font-weight: bolder;
font-size: 5em;
}
p{
font-size: 2em;
}
button{
width: 150px;
height: 50px;
border-radius: 8px;
margin:20px 0;
font-size: 1.2em;
font-weight: 900;
color: wheat;
background-color: chocolate;
border: none;
box-shadow: 0px 6px 0px #d5a684db;
}
button:active{
box-shadow: 0px 1px 0px #d5a684db;
transform: translateY(5px);
}
}