-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
110 lines (102 loc) · 1.76 KB
/
index.css
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
108
109
110
@import url('https://fonts.googleapis.com/css?family=Roboto|Spectral');
body {
font-family: 'Roboto', sans-serif;
background-color: #eeeeee;
margin: 0;
}
.block {
display: block;
margin: 15px auto;
width: 90%;
background-color: #fff;
padding: 5px 25px;
border-radius: 15px;
border: 2px solid #09f;
width: calc(90% - 50px);
}
.block.alert {
border: 2px solid #dddd16;
box-shadow: inset 0 0 10px #dddd16;
}
.banner {
width: 100%;
margin: auto;
margin-bottom: 20px;
display: block;
background-color: #00c0ff;
box-shadow: 0 0 1px 2px #000;
}
.banner img {
width: 100%;
max-width: 1000px;
display: block;
margin: 0 auto;
}
.text {
padding: 10px 15px;
margin-bottom: 20px;
}
h1 {
color: #00c0ff;
font-size: 48pt;
margin: 0;
}
h2 {
color: #00c0ff;
font-size: 36pt;
margin: 0;
}
p, li {
font-size: 14pt;
font-family: 'Spectral', serif;
}
.two {
text-align: right;
margin-left: auto;
margin-right: 15px;
}
.cta {
text-decoration: none;
color: #00c0ff;
background-color: #fff;
padding: 10px 25px;
text-align: center;
display: block;
margin: 20px auto;
font-size: 24pt;
border: 2px solid #0099ff;
border-radius: 15px;
box-shadow: 0 2px 2px #555;
transition: 0.3s linear all;
width: calc(90% - 50px);
}
.cta:hover {
background-color: #0099ff;
color: #fff;
box-shadow: 0 8px 8px #555;
}
footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
border-top: 1px solid #000;
background-color: #fff;
}
footer a:link, footer a:visited {
color: #0094c5;
}
.url-block {
display: block;
width: 400px;
}
.url-block img {
width: 100%;
}
.carousel {
display: block;
margin: auto auto 20px auto;
box-shadow: 0 2px 8px #555;
border-radius: 20px;
width: 90%;
}