-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsubmit.css
125 lines (107 loc) · 2.09 KB
/
appsubmit.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
/* Played with borders on this page */
#appsuccess {
font-size: 40px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 0px;
margin-top: 0px;
margin-left: 40%;
margin-right: 40%;
padding: 5px;
border-bottom: 0.2px solid black;
border-right: 0.2px solid black;
border-left: 0.2px solid black;
}
#appsubmit {
font-size: 30px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 0px;
margin-top: 0px;
margin-left: 25%;
margin-right: 24.5%;
padding: 10px;
border-top: 0.2px solid black;
border-right: 0.2px solid black;
border-left: 0.2px solid black;
}
#navappsubmit {
margin: 10px 390px 0px 410px;
}
nav ul {
position: relative;
list-style-type: none;
padding: 5px 0px 5px 0px;
}
nav ul li {
display: inline-block;
padding: 5px 25px 5px 20px;
}
a:link, a:visited {
text-decoration: none;
}
#navappsubmit ul li a:link, #navappsubmit ul li a:visited {
color: #954b4b;
border-bottom: none;
font-weight: bold;
text-shadow: 1px 1px 3px #e2c2c2;
text-transform: uppercase
}
li.selected, li:hover {
background-color: #c8b99c;
}
.container1 { /* From here down is all new. It is a responsive email/newsletter signup */
margin-top: 0%;
padding-bottom: 10px 40px;
text-align: center;
color: crimson;
}
.container1 p {
max-width: 600px;
margin: 20px auto;
font-size: 20px;
}
#signup {
margin-bottom: 0px;
margin-top: 0px;
margin-left: 40%;
margin-right: 43%;
padding: 10px;
border-bottom: 0.2px solid black;
border-right: 0.2px solid black;
border-left: 0.2px solid black;
}
.email-box {
height: 40px;
margin-right: 34px;
margin-bottom: 8px;
justify-content: center;
display: flex;
}
.email-box i {
width: 40px;
line-height: 40px;
}
.tbox, .btn {
border: none;
outline: none;
}
.tbox{
width: 0px;
transition: 0.6s;
}
.email-box:hover > .tbox, .tbox:focus{
width: 260px;
padding: 0 10px;
}
.btn {
background: linear-gradient(red,yellow);
color: white;
padding: 0 20px;
text-transform: uppercase;
cursor: pointer;
}
::selection { /* Changes highlighter colors */
color: pink;
background: black;
}