-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepeated.css
More file actions
91 lines (81 loc) · 1.61 KB
/
repeated.css
File metadata and controls
91 lines (81 loc) · 1.61 KB
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
/* Applies "box-sizing: border-box" globally to include padding and border in element dimensions */
* {
box-sizing: border-box;
}
.account-popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 2;
}
.popup-content {
background-color: #fff;
padding: 20px;
border-radius: 8px;
border: 2px solid black;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
position: relative;
z-index: 3;
width: 250px;
height: 160px;
}
.popup-content .close {
position: absolute;
top: 10px;
right: 10px;
font-size: 20px;
cursor: pointer;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.header {
padding: 7px;
text-align: center;
background-image: url(images/ictback.jpg);
background-size: cover;
background-position: center;
text-shadow:
-1px -1px 2px #000,
1px -1px 2px #000,
-1px 1px 2px #000,
1px 1px 2px #000;
color: white;
}
.header h1 {
font-size: 32px;
}
/* styles the top navigation bar */
.navbar {
overflow: hidden;
background-color: #698696;
}
/* styles the navigation bar links */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* changes color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
.footer {
padding: 10px;
color: white;
text-align: center;
background: #698696;
bottom: 0;
width: 100%;
}