-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (112 loc) · 1.95 KB
/
style.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
body {
text-align: center;
background-image: url(./Resources/forest_Background.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
#welcomePg {
padding: 20px;
margin: 10px;
}
#playerNum {
margin-top: 30px;
}
#characterPlaying {
margin-top: 50px;
}
button.c {
font-weight: normal;
color: black;
}
button.c:focus {
color: rgb(209, 141, 16);
}
button.c:active {
font-weight: bold;
}
#rulesButton {
margin-top: 10px;
font-size: xx-large;
border-radius: 5px;
border-color: brown;
}
#rules{
text-align: center;
padding: 80px;
margin: 20px;
font-size: 30px;
}
#startButton{
font-size: xx-large;
border-radius: 5px;
border-color: brown;
}
.HTP{
font-size: 90px;
color: #f04006;
}
#endGame {
margin-bottom: 20px;
}
#playGame {
margin-top: 0;
}
#container{
text-align: center;
width: 800px;
height: 700px;
border: 2px solid rgb(24, 175, 11);
border-radius: 8px;
border-style: outset;
background-color: rgb(146, 202, 166);
background-blend-mode: lighten;
position: relative;
left: 400px;
}
.tile {
border: 1px solid rgb(18, 18, 18);
width: 100px;
height: 100px;
padding: 10px;
margin-top: 10px;
}
.rows {
display: flex;
align-items: center;
flex-direction: row-reverse;
justify-content: botton;
font-size: 21px;
}
.character {
margin-left: 100px;
display: flex;
justify-content: center;
justify-content: space-around;
}
.dontShow{
display:none;
}
button {
cursor: pointer;
}
button:hover {
background-color: rgb(178, 188, 48);
}
#dicebutton #diceFaces {
border-radius: 8px;
border-color: brown;
width:150px;
height:60px;
}
#restartButton {
border-radius: 8px;
border-color: brown;
width: 250px;
height: 60px;
font-size: x-large
}
#winner {
font-size: 100px;
color:rgb(209, 141, 16);
font-family: 'Carter One', cursive;
}