-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory.css
111 lines (94 loc) · 1.7 KB
/
story.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
#navstory {
margin: 10px 400px 0px 415px;
}
nav ul { /* Navigation Bar */
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;
}
nav ul li a:link, nav ul li a:visited {
color: #954b4b;
border-bottom: black;
font-weight: bold;
text-shadow: 1px 1px 3px #e2c2c2;
text-transform: uppercase
}
li.selected, li:hover {
background-color: #c8b99c;
}
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif; /* Another Web font */
}
header {
margin: 0 auto;
width: 70%;
}
a {
transition: all .5s;
text-decoration: none;
color: #fff;
}
img {
width: 100%;
transition: all .5s;
}
section {
padding: 10px 0;
margin-top: 50px;
text-align: center;
}
.container {
max-width: 1400px;
width: 100%;
margin: 0 auto;
}
main {
display: grid; /* New grid display */
grid-template-columns: 1, 1fr;
margin: 30px 15px 0px 15px;
}
#mainstoryheader {
margin: 1%;
font-size: 50px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;;
}
#storyheader {
margin: 4%;
font-size: 20px;
color: white;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;;
}
#storybox {
padding: 0px;
background: linear-gradient(yellow,red);
border: 1px solid black;
opacity: 0.8;
filter: alpha(opacity=60); /* For IE8 and earlier */
}
#storybox p {
margin: 4%;
font-weight: bold;
}
#backbtn {
background: linear-gradient(yellow,red);
text-align: center;
padding: 2px;
border-radius: 50px; /* Rounded back button */
text-transform: uppercase;
font-size: 16px;
text-shadow: 0px 0px 3px #FF0000;
margin-left: 44%;
margin-right: 44%;
opacity: 0.8;
}