-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel1.css
161 lines (151 loc) · 3.41 KB
/
level1.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
@import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');
body {
overflow-x: hidden;
font-family: 'Indie Flower', cursive;
color: darkslategrey;
}
/* Navigation */
.navbar {
font-family: 'Indie Flower', cursive;
text-transform: uppercase;
font-weight: 700;
font-size: .9rem;
letter-spacing: .1rem;
background: rgba(0,0,0,0.6)!important;
}
.navbar-brand img {
height: 2rem;
}
.navbar-nav li {
padding-right: .7rem;
}
.navbar-dark .navbar-nav .nav-link {
color: white;
padding-top: .8rem;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
color: #1EBBA3;
}
/* langing page */
.home-inner {
background-image: url(back10.jpg);
}
.caption {
width: 100%;
max-width: 100%;
position: absolute;
top: 10%;
z-index: 1;
color: white;
text-transform: uppercase;
text-shadow: .1rem .1rem 2rem white;
}
.caption h1 {
font-family: 'Indie Flower', cursive;
font-size: 2rem;
font-weight: 700;
letter-spacing: .3rem;
text-shadow: .1rem .1rem 2rem white;
padding-bottom: 1rem;
}
.caption h3 {
font-size: 1rem;
text-shadow: .1rem .1rem 2rem white;
padding-bottom: 1.6rem;
}
.btn-lg {
border: 1px solid purple;
color: white;
padding: .6rem 1.3rem;
font-size: 1.1rem;
text-shadow: .1rem .1rem 2rem white;
}
.status{
text-shadow: .1rem .1rem 2rem white;
color: rgb(228, 218, 224);
font-family: 'Indie Flower', cursive;
text-align: center;
font-size: 30px;
}
.container{
display: grid;
grid-column-gap: 10px;
grid-row-gap: 10px;
grid-template-columns: auto auto;
padding: 10px;
}
.square{
text-shadow: .1rem .1rem 2rem white;
color: white;
border: 1px solid purple;
border-radius: 10px;
padding: 20px;
height: 60px;
width: 60px;
font-size: 25px;
text-align: center;
margin: auto;
}
.start{
color: white;
border: 1px solid purple;
border-radius: 10px;
background-color: rgba(35, 123, 79, 0.615);
padding: 20px;
padding-top: 20px;
height: 60px;
width: 60px;
font-size: 10px;
text-align: center;
margin: auto;
}
.reset{
color: white;
border: 1px solid purple;
border-radius: 10px;
background-color: rgba(128, 48, 34, 0.8);
padding: 20px;
padding-top: 20px;
height: 60px;
width: 60px;
font-size: 10px;
margin: auto;
}
.flash{
color: white;
border: 1px solid white;
border-radius: 10px;
background-color: rgba(167, 165, 169, 0.8);
padding: 20px;
height: 60px;
width: 60px;
font-size: 25px;
text-align: center;
margin: auto;
}
.white{
color: black;
border: 1px solid black;
border-radius: 10px;
background-color: rgba(247, 247, 247, 0.8);
padding: 20px;
padding-top: 20px;
height: 60px;
width: 60px;
font-size: 10px;
text-align: center;
margin: auto;
}
/*============ BOOTSTRAP BREAK POINTS:
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap
Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
=============*/