forked from garciasantino/CodeBreaker-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 934 Bytes
/
style.css
File metadata and controls
65 lines (54 loc) · 934 Bytes
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
@font-face {
font-family: 'Montserrat';
src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2');
}
h1 {
color: white;
text-shadow: 0 0 6px black;
font-family: Montserrat;
}
h2 {
color: white;
text-shadow: 0 0 6px black;
font-family: Montserrat;
}
h3 {
color: white;
text-shadow: 0 0 6px black;
font-family: Montserrat;
}
p {
color: white;
text-shadow: 0 0 6px black;
font-family: Arial;
}
body {
background-repeat: no-repeat;
background-size: 160%;
}
.column {
float: left;
padding: 15px;
}
.column2 {
float: right;
padding: 15px;
}
img {
border-radius: 5px 5px 5px 5px;
}
img:hover {
transition: transform .2s;
transform: scale(1.1);
}
.bluebutton {
background-color: #131D31;
opacity: 0.8;
border-radius: 5px 5px 5px 5px;
padding: 10px;
color: white;
}
.bluebutton:hover {
transition: transform .2s;
transform: scale(1.1)
}