forked from TheGiraffe/CodeKCS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharterbot.css
More file actions
107 lines (102 loc) · 1.82 KB
/
charterbot.css
File metadata and controls
107 lines (102 loc) · 1.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url(fonts/airstream/stylesheet.css);
@import url(fonts/ostrichsans/stylesheet.css);
@import url(fonts/printclearly/stylesheet.css);
@import url(fonts/icons/foundation-icons.css);
body{
background-image: url("images/background.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color: white;
font-family: 'print_clearlyregular';
font-size: 25px;
}
h1{
font-family: 'ostrich_sansblack';
font-size: 100px;
margin-top: 0px;
text-decoration: none;
color: #a6f441;
margin-bottom:5%;
}
#kcslink{
color: #a6f441;
text-decoration: none;
cursor: pointer;
}
#kcslink:hover{
color:black;
cursor: pointer;
text-decoration: none;
}
.container{
margin-top: -40px;
width: 45%;
}
h2{
font-family: 'airstreamregular';
font-size: 50px;
margin-top: 6%;
margin-bottom: 20px;
font-weight: 200;
}
#learnAbout{
margin-top:10px;
}
.cats {
background-color: #a6f441;
border: none;
border-radius: 5px;
color: black;
font-family: 'ostrich_sansblack';
margin: 10px;
padding: 10px 12px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
cursor: pointer;
position: relative;
top: 15%;
bottom: 50%;
}
.cats span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.cats span:after {
content:" +";
color: #a6f441;
font-size: 30px;
font-family: 'ostrich_sansblack';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.cats:hover{
background-color: black;
}
.cats:hover span {
padding-right: 20px;
color: #a6f441;
}
.cats:hover span:after {
opacity: 1;
right: 0;
}
.initialcats{
width:75%;
}
.socialIcon{
color: #a6f441;
font-size:25px;
margin-right:12px;
float: left;
}
.socialIcon:hover{
color:#25223d;
}