forked from cs-4241-2023/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (99 loc) · 1.9 KB
/
style.css
File metadata and controls
114 lines (99 loc) · 1.9 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#mainPage {
animation: fadeIn ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
font-family: 'Inconsolata', Andale Mono, monospace;
color: black;
margin: 0 auto;
max-width: 900px;
display: none;
}
#screensaver {
background-color: black;
width: 100%;
height: 100%;
position: absolute;
background: url('https://s.yimg.com/cd/diminuendo/1.0/original/ff1c1ad107c1f37cbe58de7e2870729974509a3c.gif');
background-size: cover;
}
body {
background-color: black;
margin: 0;
}
button {
width: 100%;
height: 100%;
position: absolute;
margin: 0;
padding: 0;
background-color: transparent;
border: none;
z-index: 10;
}
/* fade animation */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
h1 {
font-size: 18px;
color: #002b75;
text-decoration: underline;
}
.header {
width: 99%;
height: 20px;
background-color: #01037d;
padding-left: 10px;
color: white;
font-weight: bold;
}
.container-box {
border-top: 2px solid white;
border-left: 2px solid white;
border-bottom: 2px solid black;
border-right: 2px solid black;
padding-right: 1px;
background-color: #c2c2c2;
margin-bottom: 20px;
}
img {
background-color: #044c40;
height: 150px;
margin-top: 0;
margin-right: 10px;
float: left;
}
#box-1 {
height: 160px;
padding: 10px;
}
#box-2 {
padding: 10px;
}
.icon {
float: right;
background-color: #c2c2c2;
color: black;
margin-top: 2px;
margin-right: 2px;
height: 14px;
width: 14px;
border-top: 2px solid white;
border-left: 2px solid white;
border-bottom: 2px solid black;
border-right: 2px solid black;
text-align: center;
line-height: 14px;
}
hr {
border-top: 2px solid black;
margin-top: 0;
}
li::marker {
content: "› ";
}