-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystemreq.css
87 lines (82 loc) · 1.23 KB
/
systemreq.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
*
{
list-style: none;
margin: 0px;
}
.module-container {
box-sizing: border-box;
width: 100vw;
min-height: 100vh;
overflow-x: hidden;
margin: 0;
padding: 0;
}
.cointainer
{
display:flex;
justify-content: flex-end;
align-items: center;
/*width: 100%;*/
/*height: 70px;*/
height: 10vh;
/*float: right;*/
/*font-size: 20px;*/
background-color: green;
}
nav ul
{
display: flex;
/*float:right;*/
justify-content: flex-end;
}
nav ul li
{
padding: 0px 15px;
}
.mainlink
{
padding: 15px;
font-size: 20px;
}
a
{
text-decoration: none;
color: white;
}
a:hover
{
color: orange;
}
.head {
text-align: center;
font-size: 30px;
}
.content {
display: flex;
justify-content: center;
align-items: stretch;
flex-wrap: wrap;
gap: 20px;
padding: 10px;
width: 100%;
height: 100%;
}
.card {
background-color: lightyellow;
border: 1px solid black;
border-radius: 10px;
padding: 10px;
}
.card-heading {
font-size: 20px;
font-weight: bold;
text-decoration: underline;
}
.card-list {
text-align: left;
font-size: 20px;
}
.list-option {
list-style-type: disc;
list-style-position: inside;
}