-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
61 lines (54 loc) · 1.11 KB
/
main.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
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Set a background color and text color for the body */
body {
width: 400px;
margin: 0 auto;
padding: 20px;
text-align: center;
background-color: #f5f5f5;
font-family: 'Consolas', monospace;
}
/* Style the header */
h3#token {
font-size: 24px;
color: #333;
margin: 10px 0;
}
/* Style the label and input field */
label.mdc-text-field {
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
input#tokenInput {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
color: #333;
}
/* Style the "Get Discord Token" button */
button#getToken {
background-color: #D41D1C;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
/* Add hover effect to the button */
button#getToken:hover {
background-color: #b41b1a;
}
/* Center the button within its parent */
div.mdc-layout-grid__cell {
display: flex;
justify-content: center;
}