-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (122 loc) · 2.31 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
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
123
124
125
126
127
128
129
130
131
@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Shadows+Into+Light&display=swap");
.debug {
font-family: arial;
font-size: 2.5rem;
display: flex;
flex-direction: column;
}
html {
font-size: 62.5%;
box-sizing: border-box;
}
body {
padding: 6rem 24rem;
color: #3b3103;
background-color: #bbd56f;
font-family: "Shadows Into Light", cursive;
}
.header {
margin-bottom: 3rem;
text-align: center;
font-family: "Gloria Hallelujah", cursive;
line-height: 0.3;
}
.header__title {
color: #434d28;
font-size: 12rem;
}
.header__title #red {
color: #e6241c;
}
.header__title #green {
color: #678a00;
}
.header__sub-title {
font-size: 3rem;
color: #7b9922;
line-height: 1.5;
}
.main {
position: relative;
}
.main__warper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.main__button {
position: absolute;
z-index: 100;
padding: 3rem 6rem;
background-color: #7b9922;
color: #434d28;
border: none;
border-radius: 10px;
font-size: 3.5rem;
font-family: "Shadows Into Light", cursive;
font-weight: bolder;
-webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35);
box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35);
transition: font-size 0.3s ease-out, color 0.3s ease-out;
cursor: pointer;
}
.main__button:hover {
font-size: 4.5rem;
color: #a4cc2d;
}
.main__button:active {
color: #e6241c;
}
.main__button--hide {
visibility: hidden;
}
.social__list {
display: flex;
justify-content: center;
padding: 0;
margin: 0;
color: #434d28;
list-style: none;
font-size: 3rem;
}
.social__item {
width: 6rem;
height: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #7b9922;
border-radius: 0 0 10px 10px;
transition: height 0.3s ease-out, color 0.3s ease-out;
}
.social__item + .social__item {
margin-left: 3rem;
}
.social__item:hover {
height: 7rem;
color: #a4cc2d;
}
.social__item:active {
color: #e6241c;
}
.input-grid__input {
display: none;
}
.input-grid__input:checked + #game-grid {
display: initial;
}
.input-grid__warper {
width: 3rem;
height: 3rem;
background-color: wheat;
}
#game-zone {
background-color: #6e5a00;
}
#game-grid {
display: none;
position: absolute;
}
/*# sourceMappingURL=style.css.map */