-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (100 loc) · 1.69 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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300&display=swap');
*{
margin: 0px;
padding: 0px;
}
:root{
--silver-chalice: #a9a9a9ff;
--midnight-green-eagle-green: #02394aff;
--prussian-blue: #043565ff;
--liberty: #5158bbff;
--wine: #702632ff;
--font1: 'Bebas Neue', cursive;
--font2: 'Open Sans', sans-serif;
}
body{
min-height: 100vh;
background-color: var(--prussian-blue);
font-family: var(--font1);
}
main{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
nav{
font-size: 20px;
padding: 15px;
letter-spacing: 5px;
background-color: var(--midnight-green-eagle-green);
display: flex;
justify-content: space-around;
align-items: center;
}
a {
color: var(--silver-chalice);
text-decoration: none;
}
ul {
list-style-type: none;
display: flex;
}
li {
margin-right: 30px;
}
h1{
font-size: 8em;
color: #fff;
letter-spacing: 5px;
margin-top: 40px;
}
p{
color: #fff;
font-size: 1.5em;
margin-bottom: 20px;
}
.box{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.game{
width: 100vw;
}
img{
width: 100vw;
margin: -10px 0px;
}
#area_game{
background-color: var(--silver-chalice);
padding: 100px 0px;
}
#box_game{
border: 15px double var(--prussian-blue);
border-radius: 10px;
}
.listra{
height: 50px;
background-color: var(--wine);
}
.logo{
width: 50px;
margin: 30px 20px;
}
footer{
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
@media (max-width: 360px) {
h1{
font-size: 5em;
}
#box_game{
border: none;
}
}