Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Ludicrous
Path: blob/main/styles/Log.module.css
1223 views
1
.main {
2
background: linear-gradient(-45deg, #747474, #4d5061, rgba(0 93 172));
3
background-size: 300%;
4
height: 100vh;
5
width: 100vw;
6
position: absolute;
7
top: 0;
8
left: 0;
9
}
10
11
#main-page-content {
12
padding: 30px 50px;
13
border: 2px solid #ccc;
14
border-radius: 6px;
15
position: absolute;
16
top: calc(50%);
17
overflow-y: auto;
18
height: 140px;
19
left: 50%;
20
background: #2467a5;
21
width: 60%;
22
text-align: center;
23
transform: translate(-50%, -50%);
24
z-index: 1;
25
transition: 0.25s ease height;
26
}
27
28
.main-page-about-init {
29
width: 25px;
30
height: 25px;
31
color: white;
32
position: absolute;
33
top: 10px;
34
right: 10px;
35
cursor: pointer;
36
font-size: 23px;
37
z-index: 999;
38
}
39
40
.main-page-apps-init {
41
width: 25px;
42
height: 25px;
43
color: white;
44
position: absolute;
45
top: 10px;
46
left: 10px;
47
cursor: pointer;
48
font-size: 23px;
49
z-index: 999;
50
}
51
52
.main-page-about-init:hover, .main-page-apps-init:hover {
53
transform: scale(1.1);
54
}
55
56
.main-page-about-init, .main-page-apps-init {
57
transition: 0.15s ease;
58
}
59
60
#inside-content-scroller {
61
min-height: calc(100% + 1px);
62
position: absolute;
63
top: 0;
64
left: 0;
65
width: 100%;
66
}
67
68
#main-page-content::-webkit-scrollbar {
69
width: 3px;
70
}
71
72
#main-page-content::-webkit-scrollbar-thumb {
73
background: white;
74
border-radius: 3px;
75
}
76
77
#main-page-content::-webkit-scrollbar-track {
78
background: #2467a5;
79
}
80
81
#main-page-content h2, #main-page-content h1, #main-page-content h5 {
82
color: white;
83
}
84
85
#no-bottom-margin {
86
margin-bottom: 0;
87
}
88
89
#main-page-content h5, #main-page-content h2 {
90
width: 50%;
91
margin: auto;
92
text-align: left;
93
}
94
95
.type-sep {
96
width: 50%;
97
background: white;
98
}
99
100
.down-chevron {
101
vertical-align: bottom;
102
margin-top: 6px;
103
margin-left: 10px;
104
cursor: pointer;
105
transition: 0.1s ease;
106
}
107
108
.apps-hidden {
109
height: 200px;
110
display: flex;
111
align-items: center;
112
justify-content: center;
113
margin: 0;
114
}
115