-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadmestyle.css
More file actions
103 lines (85 loc) · 2.54 KB
/
readmestyle.css
File metadata and controls
103 lines (85 loc) · 2.54 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
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Apr 9, 2018, 12:28:17 AM
Author : edgargangwareiv
*/
body {
background-color: black;
opacity: .9;
}
h1 {
color: white;
text-align: center;
text-decoration: underline;
font-family: "Lato", serif;
}
#credit {
color: white;
text-align: center;
font-family: "Lato", sans-serif;
font-size: 20px;
}
.title {
color: white;
font-family: "Lato", serif;
font-size: 20px;
text-decoration: underline;
padding-bottom: 10px;
}
.paragraph {
color: white;
font-family: "Lato", sans-serif;
text-align: justify;
}
.segments {
padding: 25px;
}
#applicationdetails{
}
#applicationpurpose{
}
#requirements {
}
.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #efdcfb;
-webkit-box-shadow:inset 0px 1px 0px 0px #efdcfb;
box-shadow:inset 0px 1px 0px 0px #efdcfb;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfbdfa), color-stop(1, #bc80ea));
background:-moz-linear-gradient(top, #dfbdfa 5%, #bc80ea 100%);
background:-webkit-linear-gradient(top, #dfbdfa 5%, #bc80ea 100%);
background:-o-linear-gradient(top, #dfbdfa 5%, #bc80ea 100%);
background:-ms-linear-gradient(top, #dfbdfa 5%, #bc80ea 100%);
background:linear-gradient(to bottom, #dfbdfa 5%, #bc80ea 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfbdfa', endColorstr='#bc80ea',GradientType=0);
background-color:#dfbdfa;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:5px solid #a64ce6;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Verdana;
font-size:15px;
font-weight:bold;
padding:14px 24px;
text-decoration:none;
text-shadow:0px 1px 13px #9752cc;
position: absolute;
top: 10;
right: 25px;
}
.myButton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bc80ea), color-stop(1, #dfbdfa));
background:-moz-linear-gradient(top, #bc80ea 5%, #dfbdfa 100%);
background:-webkit-linear-gradient(top, #bc80ea 5%, #dfbdfa 100%);
background:-o-linear-gradient(top, #bc80ea 5%, #dfbdfa 100%);
background:-ms-linear-gradient(top, #bc80ea 5%, #dfbdfa 100%);
background:linear-gradient(to bottom, #bc80ea 5%, #dfbdfa 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bc80ea', endColorstr='#dfbdfa',GradientType=0);
background-color:#bc80ea;
}