-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuniv.css
97 lines (82 loc) · 1.28 KB
/
univ.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
* {
margin: 0 ;
padding: 0 ;
box-sizing: border-box;
}
body {
font-family: 'Source Serif Pro', serif;
font-size: 16px;
line-height: 2;
color: #333;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #333;
color: #fff;
padding: 1em;
}
nav ul {
font-size: 22px;
display: flex;
justify-content: space-between;
list-style: none;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0.5em;
}
nav a:hover {
background-color: #fff;
text-decoration: underline;
color: #333;
}
main {
margin: 2em auto;
max-width: 1000px;
padding: 0 1em;
}
h1 {
font-size: 36px;
}
h2 {
margin-bottom: 12px;
}
ul {
list-style: disc;
margin-left: 2em;
}
li {
margin-bottom: 0.25em;
}
footer {
background-color: #333;
color: #fff;
padding: 1.5em;
text-align: center;
}
table {
margin: 0 auto;
border-collapse: collapse;
border: 1px solid #ddd;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
}
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
font-size: 2em;
background-color: #333;
color: #fff;
padding: 10px 15px;
border-radius: 10 10 10px 10px;
text-decoration: none;
}
.back-to-top:hover {
background-color: #555;
}