-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesphone.css
130 lines (109 loc) · 2.36 KB
/
stylesphone.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
/* CSS Reset */
body, header, nav, main, footer, img, h1, h3 {
margin: 0;
padding: 0;
border: 0;
}
/* The body section used to display the background */
body {
background-image: url("images/background.jpg");
background-repeat: repeat;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* navigation section */
nav {
background: rgb(255,246,254);
background: linear-gradient(0deg, rgba(121,125,159,0.7861519607843137) 0%, rgba(76,79,105,0.8141631652661064) 45%, rgba(61,64,91,0.8393732492997199) 91%);
border-bottom-right-radius: 25%;
border-bottom-left-radius: 25%;
padding: 5vh;
position:static;
bottom: 40px;
border: 0.3vh solid;
border-color: #2e3147;
height:10px;
}
#nav {
align:center;
}
.row {
height:50px;
margin-left: 10%;
margin-right: 10%%;
align:center;
}
/* Style rules for header elements */
h1 {
text-align: center;
color: #161722;
text-decoration: underline;
font-size: 4vh;
font-family: Verdana, Arial, sans-serif;
}
.banner {
display: block;
margin-left: auto;
margin-right: auto;
border-color: #2e3147;
height: auto;
width: 90%;
border-top-right-radius: 5vh;
border-top-left-radius: 5vh;
}
h2 {
padding: 1%;
margin-top: 0.8em;
margin-bottom: -1em;
text-decoration: underline;
color: #161722;
font-size: 3vh;
}
h3 {
margin-bottom: -0.75em;
color: #636189;
}
/* Style rules for main content */
main {
padding: 2%;
color: #000000;
}
main p {
font-size: 2.5vh;
line-height: 2em;
color: #000000;
}
#container {
font-family: Verdana, Arial, sans serif;
}
#maincontent {
word-wrap: break-word; width:1500px;
margin: auto;
width: 90%;
background: rgba(61, 64, 91, 0.3);
font-family: Roboto, Arial, sans serif;
font-size: 1.15em;
border-color: #2e3147;
border-bottom-left-radius: 5vh;
border-bottom-right-radius: 5vh;
}
#filler {
height:12vh;
}
#filler2 {
height:8vh;
}
/* Style rules for footer content */
footer {
padding: 1%em;
border: 0.3vh solid;
border-color: #51504C;
height:12vh;
background: linear-gradient(0deg, rgba(61,64,91,0.8393732492997199) 0%, rgba(76,79,105,0.8141631652661064) 45%, rgba(121,125,159,0.7861519607843137) 100%);
}
footer p {
font-family: Verdana, Arial, sans serif;
text-align: center;
font-size: 2vh;
}