-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
120 lines (103 loc) · 2.01 KB
/
styles.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
body {
margin: 0px;
background: linear-gradient(#9a8c98, whitesmoke);
}
#hero {
background: url(images/Warwickcover.jpg);
background-size: cover;
text-align: center;
color: #FFFFFF;
padding: 100px 0px 100px 0px;
animation-name: nature;
animation-duration: 20s;
}
@keyframes nature {
from {
background: url(images/Warwickcover.jpg);
}
to {
background: url(images/Warwickm.jpg)
}
}
#title {
margin-top: 0px;
color: whitesmoke;
text-shadow: 0px 0px 6px black;
font-family: 'Orbitron', sans-serif;
padding: 20px 0px 20px 0px;
text-align: center;
border-radius: 4px;
font-weight: bold;
}
.slogan {
text-align: center;
padding: 15px 0px;
font-family: 'Orbitron', sans-serif;
width: 300px;
margin: auto;
border: none;
color: #283618;
background: white;
font-size: 18px;
}
.town-info {
text-align: center;
line-height: 1.6;
}
#ash {
text-align: center;
font-family: cursive;
font-size: 30px;
font-weight: bold;
padding: 20px 20px;
}
#sessionhead {
display: flex;
gap: 30px;
justify-content: center;
}
.fun-sites {
text-align: center;
line-height: 2;
}
.site {
width: 200px;
height: 200px;
border-radius: 50%;
;
}
.site-title {
font-size: 18px;
color: olive;
}
.photo {
width: 200px;
height: 300px;
border-radius: 20px;
}
#profile {
padding: 50px 10px 50px 10px;
display: flex;
gap: 8px;
align-content: center;
box-shadow: 10px 10px 5px rgb(187, 178, 175);
margin: 50px auto;
width: 400px;
height: 300px;
font-size: 16px;
line-height: 25px;
text-align: center;
background-color: #7f9183;
color: black;
border-bottom: 6px solid #271b1f;
border-radius: 20px;
}
#profile-name {
color: goldenrod;
text-shadow: 0px 0px 5px rgb(3, 26, 21);
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.profile-info {
color: whitesmoke;
}