-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
58 lines (48 loc) · 1004 Bytes
/
index.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
.row {
border:1px solid black;
height:fit-content;
}
.box {
display:inline-block;
height: 100%;
font-size: 300%;
box-sizing:border-box;
border:1px solid black;
text-align: center;
}
.box:hover{
background-color: aqua;
cursor: pointer;
}
header{
width: 100%;
text-align: center;
}
.word{
border: 2px solid black;
background-color: orange;
font-family: cursive;
width: fit-content;
padding: 1vw;
}
.largestWord{
border: 2px solid black;
background-color : lightseagreen;
font-family: cursive;
width: fit-content;
padding: 1vw;
}
.addWordButton{
font-family: cursive;
border-block-color: black;
background-color: lightgreen;
}
.reset{
font-family: cursive;
border-block-color: black;
background-color: lightsalmon;
float: right;
}
.message{
font-size: 100%;
}