-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (98 loc) · 1.81 KB
/
styles.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
#container{
padding: 1em;
}
#score-text{
float: right;
font-size: 1.5em;
font-weight: bold;
color: #4682b4;
}
#reset-button {
float: left;
}
#boggle-board {
display: inline-block;
vertical-align: top;
padding:5px;
background: #6495ed;
border-radius: 5px;
margin-left: 1em;
border: 10px solid #ffb90f;
border-style:inset;
width: 400px;
height: 400px;
}
#mainform {
display: inline-block;
vertical-align: top;
width: 300px;
height: 400px;
padding: 1.5em 1em 1em 1em;
background: #f4f7f8;
border: 3px solid #d4d7df;
border-radius: 5px;
}
.center-wrapper {
margin: 0 auto;
text-align:center;
width: 80%;
}
.boggle-square {
float: left;
width: 64px;
height: 64px;
margin: 5px;
text-align: center;
font-weight: bold;
font-size: 2.5em;
border-radius: 5px;
background-color: #fffcf0;
outline-style:ridge;
outline-width: medium;
outline-color: #6495ed;
}
.gains-border{
border: 6px solid gainsboro;
border-style: outset;
}
.red-border{
border: 6px solid red;
}
.green-border{
border: 6px solid #66FF00;
}
.header {
margin: 0;
color: black;
text-align: center;
font-family: sans-serif;
font-weight: bold;
}
.container-fluid {
text-align: center;
margin-top: 2em;
}
.alert {
font-weight: bold;
color: black;
padding: 1em;
outline-color: #74A5FD;
}
.shadowbox{
-webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5);
box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5);
}
.result-label {
color: #191970;
font-style: italic;
font-weight: bold;
}
hr {
margin: .5em 0 1em 0;
height: 8px;
box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.75);
}
legend {
margin: 5px;
}