-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (56 loc) · 1.04 KB
/
main.css
File metadata and controls
69 lines (56 loc) · 1.04 KB
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
<style type="text/css">
h1{
font-family: Comic Sans Ms;
color: red;
}
.test{
font-family: Indie Flower;
color: #3F51B5;
font-size: 40px;
text-align: center;
text-decoration: underline;
margin-top: 0px;
}
.leftblock{
font-family: Kalam;
color: red;
border-color: red;
border-radius: 10px;
border-width: 4px;
background-color: #FFEBEE;
}
.rightblock{
font-family: Kalam;
color: #33691E;
border-color: green;
border-radius: 10px;
border-width: 4px;
background-color: #F1F8E9;
}
.lefttext{
font-size: 20px;
text-decoration: underline;
}
.righttext{
font-size: 20px;
text-decoration: underline;
}
.btnview{
margin-top: 15px;
color: #3F51B5;
border-color: #3F51B5;
border-radius: 5px;
border-width: 2px;
}
.tstamp{
font-size: 10px;
font-family: Monospace;
text-align: right;
}
div.alert-danger:hover{
background-color: #F8BBD0;
}
div.alert-success:hover{
background-color: #B2FF59;
}
</style>