-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexplore.css
127 lines (116 loc) · 2.45 KB
/
explore.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
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Montserrat:ital,wght@0,400;0,500;1,400&display=swap');
body {
background:#AE70FC;
}
#forcolor{
font-family: Space Mono, monospace;
font-style: italic;
font-weight: bold;
font-size: 40px;
letter-spacing: 0.205em;
color: #8839FF;
}
#cont{
background-color: rgb(34, 33, 33);
}
#forcolor {
font-family: Space Mono, monospace;
font-style: italic;
font-weight: bold;
font-size: 25px;
letter-spacing: 0.205em;
color: #8839FF;
}
nav .navbar-nav li a{
color: white !important;
text-align: center;
text-decoration: none!important;
transition: all 0.4s;
font-family: 'Lora', serif;
font-size:17.5px;
font-weight: 600;
}
nav .navbar-nav li a:hover{
background-color: #8839FF;
}
#btncol{
text-align: center;
font-weight: bolder;
padding: 3px 10px;
background: linear-gradient(180deg, #8629FD 0%, #A76CF2 100%);
transition: box-shadow 0.4s;
}
#btncol:hover{
color:#E5E5E5;
background: linear-gradient(180deg, #7000FF 0%, #954EF0 100%);
box-shadow: 1px 1px 2px rgba(238, 225, 255, 0.5);
}
.interestcontainer {
display: none;
}
h1, h5{
font-family: 'Lora', serif;
font-weight: bolder;
}
li a{
color: #060608;
}
li a:hover{
color: #060608 !important;
}
.navbar-toggler{
outline: none!important;
}
.btn {
border-radius: 0 .25rem .25rem 0;
}
.form-control{
border-radius: .25rem 0 0 .25rem ;
}
#joinchat {
text-align: center;
font-family: 'Lora', serif;
font-weight: bolder;
padding: 9px 25px;
background: linear-gradient(180deg, #8629FD 0%, #A76CF2 100%);
border-radius: 50px;
transition: box-shadow 0.4s;
border: 2px #fff;
}
#joinchat:hover{
color:#E5E5E5;
background: linear-gradient(180deg, #7000FF 0%, #954EF0 100%);
box-shadow: 1px 1px 2px rgba(238, 225, 255, 0.5);
}
.card-deck{
box-sizing: border-box;
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fill,minmax(300px,320px)) ;
column-gap: 18px;
row-gap: 18px;
margin: 0;
}
.card-text {
margin-right: 20px;
display: inline-block;
position: absolute;
bottom:0;
right:0;
}
.card-body {
padding: 1rem 1rem 0.5rem 1rem;
}
.card{
background-color: #EEE1FF;
border-radius: 25px;
border-color: #E5E5E5;
margin: 0!important;
padding: 0;
}
.hide{
display: none!important;
}
#image{
width: 20%;
}