-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (91 loc) · 1.7 KB
/
style.css
File metadata and controls
106 lines (91 loc) · 1.7 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
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
html {
height: 100%;
font-family: 'Acme', sans-serif;
}
body {
background: #e0e0e0;
height: 100%;
letter-spacing: 1px;
word-spacing: 2px;
line-height: 145%;
}
.container {
height: 60%;
}
.row {
margin: 0 auto;
height: 60%;
width: 60%;
}
h1 {
text-align: center;
}
.square {
display: inline-block;
/*border: 1px solid crimson;*/
width: 30%;
height: 150px;
margin: 1.66%;
float: left;
border-radius: 15px;
cursor: pointer;
transition: background-color 0.6s;
}
.jumbotron {
margin-bottom: 0;
background-color: #5D359D;
color: white;
text-align: center;
letter-spacing: 2px;
word-spacing: 4px;
text-transform: uppercase;
}
.jumbotron h1 {
text-shadow: 0 4px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1), 0 18px 23px rgba(0, 0, 0, 0.1);
}
.button-bar {
height: 37px;
background-color: #f4f4f4;
text-align: center;
margin-bottom: 30px;
}
.mybtn,
.mybtn:link{
font-size: 18px;
font-weight: bold;
color: #5D359D;
border: 0;
background-color: #f4f4f4;
border-radius: 0;
margin: 0 10px;
text-transform: uppercase;
transition: color 0.3s, background-color 0.3s;
outline: none;
}
.mybtn:focus {
outline: none;
}
.mybtn:active,
.mybtn:hover,
.mybtn:visited{
color: #ffffff;
background-color: #5D359D;
border-color: #5D359D;
}
.selected {
color: #ffffff;
background-color: #5D359D;
}
#infoLabel {
display: inline-block;
text-align: center;
color: #F13860;
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
margin: 10px 0;
}
.highlight {
color: #ffffff;
background-color: #5D359D;
}