Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/ata/style.css
574 views
1
html{
2
background: #fafafa;
3
cursor: default;
4
font-family: "Open Sans", sans-serif;
5
}
6
::selection {
7
background: #ccddff;
8
}
9
::-moz-selection{
10
background: #ccddff;
11
}
12
body{
13
text-align: center;
14
}
15
.noselect{
16
-webkit-user-select: none;
17
-moz-user-select: none;
18
user-select: none;
19
}
20
#header{
21
font-size: 40px;
22
}
23
.alertify-logs{
24
z-index: 9996;
25
}
26
#cl{
27
color: #5589ff;
28
cursor: pointer;
29
}
30
button{
31
background-color: rgba(255, 255, 255, 0.5);
32
border: 1px solid #bbb;
33
margin-right: 4px;
34
cursor: pointer;
35
font-size: 14px;
36
padding: 3px 5px;
37
border-radius: 2px;
38
transition: all 0.2s;
39
}
40
button:focus{
41
border-color: #888;
42
outline: none;
43
}
44
button:hover{
45
border-color: #888;
46
}
47
button:active{
48
border-color: #555;
49
}
50
button[disabled]{
51
background-color: rgba(235, 240, 255, 0.5);
52
color: black;
53
cursor: default;
54
}
55
a{text-decoration: none}
56
57
#footer{
58
color: #5589ff;
59
}
60
.footer-action:hover{
61
text-decoration: underline;
62
cursor: pointer;
63
}
64
.lgspace{
65
display: inline-block;
66
width: 25px;
67
}
68
69
.alertify .alert>*, .alertify .dialog>*{
70
width: 75% !important;
71
max-width: 700px;
72
}
73
#frame{
74
width: 405px;
75
border: none;
76
height: 470px;
77
}
78