-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (61 loc) · 936 Bytes
/
styles.css
File metadata and controls
67 lines (61 loc) · 936 Bytes
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
body {
background: #232323;
margin: 0;
font-family: monospace;
}
.jumbotron {
margin-bottom: 0;
background: #3aaa6d;
}
header h4,
h2 {
color: #ffffffe0;
line-height: 2em;
font-weight: bold;
}
h1 {
font-weight: bold;
}
.navbar {
background: #d8e9e3;
padding: 0.2rem 1rem;
}
nav a {
font: bold 14px monospace;
border: 1px solid #222;
margin-right: 5px;
color: #222;
transition: all 0.3s ease-in-out;
}
nav #reset:hover {
background: #222;
color: yellow;
}
nav a:hover {
color: white;
background: crimson;
}
.square {
width: 30%;
padding-bottom: 30%;
background: #333;
margin: 1.66%;
border-radius: 1em;
float: left;
transition: background 0.5s;
}
#container {
margin: 30px auto;
max-width: 600px;
}
#message {
font-weight: bold;
text-transform: uppercase;
background: crimson;
padding: 0px 5px;
color: white;
}
.selected {
background: crimson;
color: white;
}