-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.css
More file actions
120 lines (106 loc) · 2.33 KB
/
guide.css
File metadata and controls
120 lines (106 loc) · 2.33 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
117
118
119
120
body,
html {
margin: 0;
padding: 0;
}
html {
min-height: 100%;
max-width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background: rgba(57, 52, 131, 1);
background-repeat: no-repeat;
background: linear-gradient(153deg, rgba(57, 52, 131, 1) 13%, rgba(61, 61, 204, 1) 55%, rgba(0, 212, 255, 1) 100%);
color: white;
font-family: sans-serif;
}
.server-container {
min-height: 100%;
padding: 2rem;
display: flex;
max-width: 100%;
flex-wrap: wrap;
}
.server {
background: rgba(0, 0, 0, .2);
border: 2px solid white;
border-radius: 1rem;
padding: 1rem;
/* max-width: 300px; */
width: 20%;
min-width: 200px;
margin: 1rem;
}
.top-row {
display: grid;
grid-template-columns: auto 1.25rem;
}
.server-name input {
background-color: transparent;
border: 0px;
border-bottom: 2px solid white;
color: white;
font-family: monospace;
font-size: 1.5rem;
}
.server-name input:focus {
outline: none;
}
.delete-container {
cursor: pointer;
display: inline-block;
color: rgba(57, 52, 131, 1);
background: white;
border: 1px solid white;
border-radius: 4px;
width: 1rem;
height: 1rem;
text-align: center;
}
.option {
margin-bottom: .25rem;
}
.options-section h3 {
margin-bottom: 0;
}
.option h5 {
margin: 0;
}
.bottom-row {
width: 100%;
}
.button-container button {
float: right;
margin: 2rem;
padding: .5rem;
border: 2px solid white;
background-color: rgba(0, 0, 0, .2);
color: white;
border-radius: 8px;
}
.hidden {
display: none;
}
@media only screen and (max-width: 600px) {
html {
min-height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background: rgba(57, 52, 131, 1);
background-repeat: no-repeat;
background: linear-gradient(153deg, rgba(57, 52, 131, 1) 13%, rgba(61, 61, 204, 1) 55%, rgba(0, 212, 255, 1) 100%) fixed;
color: white;
}
.server {
background: rgba(0, 0, 0, .2);
border: 2px solid white;
border-radius: 1rem;
padding: 1rem;
/* max-width: 300px; */
width: 90%;
}
}