forked from CodeYourFuture/WebDeveloperTest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
97 lines (84 loc) · 2.37 KB
/
main.css
File metadata and controls
97 lines (84 loc) · 2.37 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
.heading {
font-family: 'Apple-Chancery', cursive;
font-style: italic;
font-size: 5em;
}
body {
background-image: url("background.png");
background-size: cover;
}
.whiteFont {
color: white;
}
.yellow {
color: yellow;
}
.red {
color: #C91A44;
}
.Italic {
font-style: italic;
}
.bordercontainer {
/*border: 3em solid blue;*/
/*display: flex;*/
margin-right: 29em;
margin-left: 3em;
margin-bottom: 3em;
padding-left: 5em;
padding-right: 5em;
padding-bottom: 35em;
padding-top: 2em;
}
.submitbox {
/*border: 4em solid hotpink;*/
padding-top: 1%;
padding-bottom: 1%;
}
.submitform {
/*border: 2em solid yellow;*/
display: flex;
padding-bottom: 1%;
padding-top: 2%;
padding-right: 23%;
flex-direction: column;
justify-content: space-around;
}
.submitform .width {
margin-right: 38%;
}
.buttonSize {
padding-right: 2%;
}
.indentedParagraph {
/*border: solid rebeccapurple;*/
padding-left: 10%;
}
.biggertext {
font-size: 25em;
}
.listIndentation {
margin-left: -4%;
}
.inValid {
background-color : rebeccapurple;
}
.hidden {
display: none;
}
nav button {
color: white;
font-size: 1em;
padding-left: 2em;
padding-right: 2em;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4c4c4c+0,595959+12,666666+25,474747+39,2c2c2c+50,000000+51,111111+60,2b2b2b+76,1c1c1c+91,131313+100;Black+Gloss+%231 */
background: #4c4c4c; /* Old browsers */
background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
box-shadow:2em 4em 8em 0 rgba(255, 255, 255, 0.5)
}
nav button:hover {
box-shadow:12em 15em 20em 0 rgba(255, 255, 255, 0.5)
}