-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (80 loc) · 1.66 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
.container {
width: 100%;
margin: auto;
text-align: center;
}
.dice {
text-align: center;
display: inline-block;
}
.board {
background-color: #E4C59E;
padding: 70px; /* Increased padding */
border-radius: 1000px; /* Adjusted border-radius */
border: 20px solid #322C2B;
}
.player-name {
cursor: pointer;
outline: none;
margin: 0px 50px 20px 50px;
}
body {
background-color: #7414a4;
}
h1 {
margin: 30px;
font-family: 'Lobster', cursive;
text-shadow: 5px 0 #18dbdf;
font-size: 8rem;
color: #1aed21;
letter-spacing: 20px;
}
h2 {
margin: 30px;
font-family: 'OCR A', monospace;
text-shadow: 5px 0 #c7fd02;
font-size: 6rem;
color: #ff00f2;
}
p {
font-size: 2rem;
color: #803D3B;
font-weight: bolder;
font-family: 'Indie Flower', cursive;
}
img {
width: 180px;
padding: 0px 40px;
}
footer {
margin-top: 20px;
color: #1aed21;
text-align: center;
font-family: 'OCR A', monospace;
font-size: 20px;
text-shadow: 1px 0 #18dbdf;
}
button {
background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 20px 2px;
cursor: pointer;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
button:hover {
background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
button:active {
transform: translateY(0);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}