-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (108 loc) · 1.82 KB
/
style.css
File metadata and controls
117 lines (108 loc) · 1.82 KB
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
body {
background: #2c2c2c;
color: white;
font-family: sans-serif;
text-align: center;
}
.main {
max-width: 100%;
margin: auto;
background: linear-gradient(#3a3a3a, #2a2a2a);
padding: 0.8em;
border-radius: 12px;
box-shadow: 0 0 10px #000;
}
#output {
color: green; /*color of the text*/
max-width: auto;
gap: 1em;
}
input[type="text"] {
width: 90%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
}
button {
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 5px;
background: #444;
color: white;
cursor: pointer;
}
button:hover {
background: #666;
}
#startSRB{
font-size: clamp(0.5em,20vw,1.5em);
font-weight: bold;
}
#readme{
display: inline-flex;
text-align: center;
justify-content: center;
justify-items: center;
background-color:#444;
margin: 1em 5em 2em 5em;
cursor: pointer;
border-radius: 1em;
color: azure;
padding: 0em 1.5em 0em 1.5em ;
}
.links{
background-color: transparent;
gap: 1em;
display: flex;
justify-content: center;
justify-self: center;
}
#info{
display: block;
line-height: 1.6em;
text-align: left;
font-size: clamp(1em,30vw,1.5em);
}
#discord{
display: flex;
display: flex;
text-align: center;
justify-content: center;
justify-items: center;
cursor: pointer;
background-color:#444;
border-radius: 1em;
gap: 0.5em;
padding: 0.2em 1em 0.2em 1em ;
}
#github{
display: flex;
display: flex;
text-align: center;
justify-content: center;
justify-items: center;
cursor: pointer;
background-color:#444;
border-radius: 1em;
gap: 0.5em;
padding: 0.2em 1em 0.2em 1em ;
}
a{
text-decoration: none;
color: azure;
}
#credits
{
display: block;
text-align: left;
}
#line{
width: 100%;
height: 1px;
background-color: #666;
}
#show{
display: none;
}