forked from SEACodeCarrots/ReportIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (97 loc) · 2.21 KB
/
style.css
File metadata and controls
107 lines (97 loc) · 2.21 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
body {
font-family: helvetica, sans-serif;
}
.header {
text-align: center;
background: rgba(107, 175, 250, 0.25);
color: black;
}
.welcome {
height: 75%;
width: 45%;
margin-left: auto;
margin-right: auto;
display: block;
background-size: cover;
}
.title {
text-align: center;
margin-top: 1.5em;
font-size: 3em;
}
.description {
display: inline-block;
margin: 3em auto;
}
.description section {
display: inline-block;
width: 40%;
vertical-align: top;
background: rgba(179, 208, 242, 0.5);
padding: 1em;
}
.what {
margin-right: 1.5em;
}
.what, .why {
border: 0.25em solid #849BB5;
border-radius: 0.25em;
margin-left: 1.5em;
}
/* My Simple Button */
/*button {
margin-bottom: 0.5em;
display: block;
margin: 0 auto;
border-radius: 8px;
}
a:link {
text-decoration: none;
}*/
/* Front Page Color Palette*/
/* AAD0FA 82BBFA 6BAFFA 6C7F94 798EA6 849BB5 91ABC7 A2BDDB B3D0F2 */
/* CSS3 Button Generator */
button {
background: #91ABC7;
background-image: -webkit-linear-gradient(top, #91ABC7, #A2BDDB);
background-image: -moz-linear-gradient(top, #91ABC7, #A2BDDB);
background-image: -ms-linear-gradient(top, #91ABC7, #A2BDDB);
background-image: -o-linear-gradient(top, #91ABC7, #A2BDDB);
background-image: linear-gradient(to bottom, #91ABC7, #A2BDDB);
-webkit-border-radius: 8;
-moz-border-radius: 8;
border-radius: 8px;
-webkit-box-shadow: 0px 1px 0px #666666;
-moz-box-shadow: 0px 1px 0px #666666;
box-shadow: 0px 1px 0px #666666;
font-family: helvetica, sans-serif;
color: black;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin-left: auto;
margin-right: auto;
display: block;
}
a:link {
text-decoration: none;
}
button:hover {
background: #82BBFA;
background-image: -webkit-linear-gradient(top, #82BBFA, #6BAFFA);
background-image: -moz-linear-gradient(top, #82BBFA, #6BAFFA);
background-image: -ms-linear-gradient(top, #82BBFA, #6BAFFA);
background-image: -o-linear-gradient(top, #82BBFA, #6BAFFA);
background-image: linear-gradient(to bottom, #82BBFA, #6BAFFA);
text-decoration: none;
}
@media(max-width: 700px) {
.description section {
display: block;
margin: 0 auto 3em;
padding: 1em;
}
.title {
font-size: 2.25em;
}
}