Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/_idle.sass
1496 views
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
@use 'colors'
7
8
#cocalc-idle-notification
9
z-index : 9999
10
position : fixed
11
margin : 0
12
padding : 0
13
top : 0
14
bottom : 0
15
left : 0
16
right : 0
17
background : rgba(150, 150, 150, 0.5)
18
cursor : pointer
19
div
20
color : white
21
position : absolute
22
background-color : colors.$COL_BLUE_D
23
min-height : 100px
24
width : 350px
25
border-radius : 5px
26
padding : 15px
27
text-align : center
28
position : absolute
29
margin : auto
30
top : 100px
31
left : 0
32
right : 0
33
cursor : pointer
34
h1, h2, h3, h4
35
color : white
36
h1, h2
37
font-size : 22px
38
h3
39
font-size : 20px
40
h4
41
font-size : 16px
42
img.logo-square,
43
img.logo-rectangular
44
display: block
45
margin : 0 auto 10px auto
46
padding: 0
47
img.logo-square
48
width : 200px
49
height : 200px
50
img.logo-rectangular
51
width : 150px
52
height : auto
53
54