-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaMain.css
124 lines (108 loc) · 2.75 KB
/
instaMain.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
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
body {
background-image: linear-gradient(to right, rgb(254, 218, 117), rgb(250, 126, 30), rgb(214, 41, 118), rgb(150, 47, 191), rgb(79, 91, 213));
font-family: 'Times New Roman', Times, serif;
font-weight: 500;
font-size: 25px;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.main-container {
max-width: 800px;
padding: 20px;
width: 100%;
justify-content: center;
align-items: center;
}
.centered-container {
display: flex;
flex-direction: column;
align-items: center;
}
.video-container {
border: 4px double rgb(244, 91, 183);
border-radius: 10px;
padding: 1%;
margin-bottom: 10%;
width: 60vw;
height: calc(60vw * 315 / 560);
}
.video {
width: 100%;
height: 100%;
cursor: pointer;
border-radius: 5px;
}
.drop-zone {
height: 100px;
padding: 1%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: lavender;
border: 4px double rgb(244, 91, 183);
border-radius: 10px;
width: 60vw;
}
.drop-zone--over {
border-style: solid;
}
.drop-zone__input {
display: none;
}
.drop-zone__prompt {
font-size: 1.2em;
}
.user-list-container {
display: none;
margin-top: 20px;
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
text-align: left; /* Align user list text to the left */
width: 80%; /* Set the width of the container */
margin: 0 auto; /* Center the container */
}
.user-list {
padding-left: 0; /* Remove default padding */
margin-top: 10px; /* Adjust margin */
}
.user-item {
margin-bottom: 5px;
padding: 10px 0; /* Add padding for space between items and center text vertically */
list-style: none; /* Remove bullets */
position: relative; /* Position relative for pseudo-element */
}
.user-item::after {
content: "";
position: absolute;
left: 0;
bottom: -5px; /* Adjust squiggly line position */
width: 100%;
height: 2px;
background-image: linear-gradient(to right, rgba(243, 164, 186, 0.8), rgba(214, 41, 118, 0.8)); /* Squiggly line gradient */
background-size: 20px 2px; /* Adjust size and spacing of squiggles */
z-index: -1; /* Behind the text */
}
.user-link {
text-decoration: none;
color: pink;
display: block; /* Make the link a block element to take full width */
text-align: center; /* Center text */
font-family: 'Times New Roman', Times, serif;
}
.user-link:hover {
color: rgb(0, 0, 107);
}
.user-link.clicked {
color: rgb(214, 41, 118);
}
/* Change color of "NonFollowers" text to navy */
#userListContainer h2 {
color: navy;
font-family: 'Times New Roman', Times, serif;
}