-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (57 loc) · 1.08 KB
/
style.css
File metadata and controls
60 lines (57 loc) · 1.08 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
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.gridclass{
background-color: #011F3F;
width: 100%;
display: grid;
grid-template-columns:repeat(6,1fr) ;
grid-template-rows: repeat(6,1fr);
height: 100vh;
margin: 0px;
}
button{
border-radius: 20px;
font-size: 4rem;
font-family: 'Arvo', cursive;
line-height: 2;
font-weight: 900;
color: #DA0463;
text-shadow: 3px 0 #7c755f;
border: 5px solid #f5de0d;
}
.one{
grid-column: 5/6;
grid-row: 6/7;
}
.two{
grid-column: 1/2;
grid-row: 4/5;
}
.three{
grid-column: 3/4;
}
.four{
grid-column: 6/7;
grid-row: 3/4;
}
.question{
background-color: #F3CA52;
grid-column: 3/5;
grid-row: 4/5;
text-align: center;
border-radius: 20%;
border: 10px solid black;
}
p{
font-feature-settings: "kern" 0, "calt" 0, "liga" 0, "clig" 0, "dlig" 0, "hlig" 0;
font-kerning: none;
font-size :48.7155px;
font-style: normal;
}
.pressed {
box-shadow: 0 0 30px white;
background-color: grey;
}