-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (116 loc) · 1.96 KB
/
style.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
131
132
133
134
135
.grid {
display: grid;
border: 20px #FFCC00 solid;
height: 1500px;
grid-template: 4fr 2fr 75% 3fr / 15% 85%;
grid-gap: 2px;
}
.box {
background-color: #BBE0DB;
color: black;
border-radius: 5px;
border: 5px #000000 solid;
padding-top: 20px;
}
.a {
grid-column: 1 / span 2;
text-align: center;
font-size: 45px;
font-weight: bold;
font-family: Comic Sans MS;
color: #000000;
background-image: url(./light.jfif);
background-size: cover;
background-position: ceter;
height: 100%;
}
.b {
grid-column: 1 / span 2;
text-align: center;
font-size: 30px;
font-weight: bold;
}
.c {
text-align: center;
}
.d {
text-align: left;
font-size: 20px;
font-family: Verdana;
padding-left: 15px;
padding-right: 15px;
}
.e {
grid-column: 1 / span 2;
text-align: center;
font-size: 17px;
}
.current-page {
background-color: #FFCC00;
}
.home-image {
background-image: url(./colors.jpg);
background-size: 95%;
background-repeat: no-repeat;
background-position: center;
height: 1000px;
}
.caption {
display: block;
font-size: 45px;
line-height: 70px;
margin-left: 50px;
padding: 10px;
position: relative;
top: 5%;
width: 35%;
color: black;
background-color: white;
opacity: .8;
}
ul {
font-size: 20px;
}
.campaign {
padding: 20px;
font-size: 25px;
text-align: left;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.left {
display: block;
margin-left: 15px;
padding-right: 60px;
float: left;
}
.text-wrap-sd {
display: inline;
padding-top: 30px;
line-height: 2;
}
.center {
text-align: center;
}
.grid-2 {
display: grid;
grid-template-areas:
'A1 A1 B2' 'A1 A1 B2''C3 C3 B2';
text-align: center;
border: 60px #FF00FF solid;
}
.A1 {
grid-area: A1;
border: 20px #FF0000 solid;
}
.B2 {
grid-area: B2;
border: 10px #0000FF solid;
}
.C3 {
grid-area: C3;
border: 15px #00FF00 dotted;
}