-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
138 lines (108 loc) · 2.16 KB
/
style.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body {
background-color: #ffffff;
color: #3f3f3f;
font-family: Arial;
/*font-variant: small-caps;*/
font-size: 24px;
text-align: center;
/* other yellow color #ced54b */
/* animation: backgroundcolorchange 60s infinite;
-webkit-animation: backgroundcolorchange 60s infinite; /* Chrome and Safari */
}
h1 {
color: white;
text-align: center;
font-size: 75px;
letter-spacing: 3px;
}
#header {
color: #ffffff;
background-color: #3d5c43;
text-align: center;
border: 2px solid #8fc4cc;
border-radius: 15px;
padding:10px;
height:120px;
}
#content {
overflow:auto;
padding-bottom: 10%; /*height of footer*/
}
#footer {
color: #ffffff;
background-color: #3d5c43;
text-align: center;
border: 1.5px solid #8fc4cc;
font-size:22px;
border-radius: 15px;
position: relative;
/*margin-top: -90px; /* negative value of footer height */
height: 10%;
clear:both;
padding:10px;
}
body:before {
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;
}
img {
display: block;
margin: auto;
}
.accent-line {
height: 2px;
width:60%;
border-width:1px;
margin:0 auto;
border: 0;
background-color: white;
border-color: #355A42;
/* border: 0; */
border-top: 2px solid #355A42;
border-radius: 0;
margin-top: 5px;
}
a:link, a:visited {
background-color: #3d5c43;
color: white;
padding: 15px 15px;
text-align: center;
display: inline-block;
border-radius: 15px;
text-decoration: none;
/* border: 1px solid #ced54b; */
border: 1.5px solid #8fc4cc;
border-radius: 15px;
position: relative;
top: 50%;
/*transform: translateY(-50%);*/
}
a:hover {
animation: buttoncolorchange 1.1s;
-webkit-animation: buttoncolorchange 1.1s;
background-color: #b0d5db;
border: 1.5px solid #8fc4cc;
border-radius: 15px;
color: #355A42;
}
#linkwithtext {
border: 4px solid #f8f8ff;
border-radius: 10px;
padding: 15px 5px 5px 15px;
background-color: rgba(70, 130, 180, 0.5);
font-size: 18px;
border-style: double;
margin: 0 auto;
margin-left:30%;
margin-right:30%;
}
/*
green from logo #3d5c43
turquoise from logo #8fc4cc
#4682b4
#b0c4de
#00bfff
*/