-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
150 lines (130 loc) · 3.11 KB
/
Copy pathstyle.css
File metadata and controls
150 lines (130 loc) · 3.11 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.menu {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.menu h1 {
margin: 0;
}
.menu button {
background-color: #555;
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
}
.menu button:hover {
background-color: #777;
}
.accounts {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
overflow: auto; /* Allow scrolling if bubbles overflow */
height: calc(100vh - 100px); /* Full height minus menu height */
}
.bubble {
background-color: #6200ea;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 10px;
transition: transform 0.3s;
cursor: pointer;
font-size: 14px; /* Default font size */
text-align: center;
}
.bubble:hover {
transform: scale(1.1);
}
/* Modal Styles */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* Login and Register Styles */
.login-container, .register-container {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background-color: white;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-container h1, .register-container h1 {
text-align: center;
margin-bottom: 20px;
}
.login-container label, .register-container label {
display: block;
margin-bottom: 5px;
}
.login-container input, .register-container input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
.login-container button, .register-container button {
width: 100%;
padding: 10px;
background-color: #555;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.login-container button:hover, .register-container button:hover {
background-color: #777;
}
.login-container p, .register-container p {
text-align: center;
margin-top: 10px;
}
.login-container a, .register-container a {
color: #555;
text-decoration: none;
}
.login-container a:hover, .register-container a:hover {
text-decoration: underline;
}