Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/email-stats/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
.alertify-logs{
21
z-index: 9996;
22
}
23
#cl{
24
color: #5589ff;
25
cursor: pointer;
26
}
27
button{
28
background-color: rgba(255, 255, 255, 0.5);
29
border: 1px solid #bbb;
30
margin-right: 4px;
31
cursor: pointer;
32
font-size: 14px;
33
padding: 3px 5px;
34
border-radius: 2px;
35
transition: all 0.2s;
36
}
37
button:focus{
38
border-color: #888;
39
outline: none;
40
}
41
button:hover{
42
border-color: #888;
43
}
44
button:active{
45
border-color: #555;
46
}
47
button[disabled]{
48
background-color: rgba(235, 240, 255, 0.5);
49
color: black;
50
cursor: default;
51
}
52
a{text-decoration: none}
53
54
#input{
55
font-size: 20px;
56
padding: 6px 6px;
57
width: 400px;
58
border: 1px solid #aaa;
59
transition: all 0.2s;
60
}
61
#input:hover, #input:focus{
62
border-color: #888;
63
outline: none;
64
}
65
#footer{
66
margin-top: 40px;
67
color: #5589ff;
68
}
69
.footer-action:hover{
70
text-decoration: underline;
71
cursor: pointer;
72
}
73
.lgspace{
74
display: inline-block;
75
width: 25px;
76
}
77
78
.alertify .alert>*, .alertify .dialog>*{
79
width: 75% !important;
80
max-width: 700px;
81
}
82
83
div.awesomplete mark{
84
background-color: #a2d1ff !important;
85
}
86
div.awesomplete{
87
text-align: left;
88
}
89
table{
90
margin-top: 40px;
91
width: 800px;
92
margin-left: calc(50% - 400px);
93
border-collapse: collapse;
94
background: white;
95
}
96
tr, td{
97
border: 1px solid #888;
98
height: 32px;
99
width: 325px;
100
font-size: 16px;
101
}
102
.tres{
103
display: inline-block;
104
width: 315px;
105
text-align: left;
106
}
107
.tpts{
108
float: right;
109
color: #467fff;
110
}
111
#desc{
112
font-size: 20px;
113
}
114
115
#email{
116
width: 900px;
117
height: 400px;
118
resize: vertical;
119
}
120
121
#email_demo{
122
width: 600px;
123
height: 100px;
124
resize: none;
125
background: #eee;
126
}
127
128
#div_results{
129
width: 900px;
130
margin-left: calc(50% - 450px);
131
}
132