-
Notifications
You must be signed in to change notification settings - Fork 0
/
website_style-2.css
81 lines (64 loc) · 1.19 KB
/
website_style-2.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
body {
/*background-image: url("website_background-2.png");*/
background-color: #29469b;
background-size: cover;
background-position: top center;
background-attachment: fixed;
/* contain seems to do a grid */
/* was set to cover*/
/*background-position: center;*/
color: white;
}
iframe {
border: none;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
p {
font-size: 20px;
}
div.text {
background-color: rgba(0,0,0,.40);
}
/* for text background, modify the content window to have background color, but change the opacity so it doesn't completely block, just makes it easier to read?
also need to make image scale with page better and keep sticky? so it doesn't keep repeating? */
.center {
text-align: center;
}
.bold {
font-weight: bold;
}
div.video {
text-align: center;
}
#robots_grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
text-align: center;
text-shadow: 1px 1px #000000;
/*background-color: rgba(0,0,0,.3);*/
}
#underline_link {
text-decoration: underline;
}
h3 {
text-align: center;
}
a {
color: white;
}
a:hover {
color: yellow;
}
img.centerimg {
display: block;
margin-left: auto;
margin-right: auto;
}
a.large_link {
font-size: 25px;
}