-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (82 loc) · 1.45 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
body {
background-color: whitesmoke;
}
* {
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
}
header {
background-color: black;
color: white;
position: sticky;
overflow:hidden;
top: 0;
width: 100%;
}
li {
display: inline;
font-size: 25px;
padding: 12px;
float: right;
}
#content-wrapper {
background: white;
display: flex;
flex-direction: column;
min-height: 80vh;
width: 50vw;
margin: 4em auto;
padding: 2.5em;
}
table,
th,
td {
border: 1px solid rgb(230 224 224);
}
table {
background-color: white;
width: 50vw;
border-collapse: collapse;
margin: 0 auto;
height: 15vh;
}
.innertable {
width: 90%;
margin: 5px 10px;
padding: 10 px;
}
td a {
color: blue;
text-decoration: underline;
}
.cap {
text-align: left;
font-size: 25px;
margin: 0 0 15px 0px;
text-decoration-color: black;
}
a {
text-decoration: none;
color: white;
}
input{
width: 50vw;
padding: 10px;
margin: 0 auto;
display: inline-block;
border: 1px solid rgb(230 224 224);
background: #f1f1f1;
}
hr {
border: 0px solid #f1f1f1;
margin-bottom: 25px;
}
.registerbtn {
background-color: black;
color: white;
padding: 10px;
cursor: pointer;
width: 51.6vw;
opacity: 0.9;
}