-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-2022.css
142 lines (130 loc) · 2.48 KB
/
style-2022.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!--
/*https://fonts.google.com/specimen/Roboto*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap");
*,
::before,
::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Roboto", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
font-size: 12pt;
/* background: linear-gradient(to bottom, #d1d1d1 0%, #f1f1f1 100%); */
/* background: #f1f1f1; */
/* more background at https://wallpaperset.com/blank-blueprint-background */
background: #1f5ba3 url(images/bg_blueprint_90907.jpg);
box-shadow: inset 0.5em 5em 10em rgba(255, 255, 255, 0.3);
color: rgb(219, 220, 240);
/* color: whitesmoke; */
/* height: 100vh; */
}
.about blockquote {
font-style: italic;
font-weight: bold;
text-align: center;
}
nav {
/* background: #0076ff; */
padding: 0 1em;
}
nav ul {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-end;
}
nav li {
list-style: none;
margin: 0.6em;
}
nav a {
text-decoration: none;
color: #e2edfe;
font-size: 12pt;
font-weight: bolder;
}
nav svg {
height: 14pt;
}
header {
/* background: #0076ff; */
text-align: center;
padding: 2em 0;
}
#logo {
max-width: 640px;
width: 95%;
}
main {
padding-top: 2em;
/* display: flex;
flex-direction: column;
justify-content: center; */
}
.demo {
text-align: center;
max-width: 900px;
margin: auto;
}
h2 {
text-align: center;
margin: 1em;
/* color: #556; */
font-size: 30pt;
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 90%;
margin: auto;
/* max-width: 1300px; */
}
.card {
width: 40em;
background: #f3f3f1;
color: #333;
/* height: 100%; */
margin: 10px;
overflow: hidden;
border: 1px solid #40474e;
/* border-radius: 10px; */
box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.3);
}
.card-content {
padding: 1em;
line-height: 1.3;
}
.card-content ul {
padding-left: 1em;
}
h3 {
padding-top: 1em;
padding-bottom: 0.6em;
padding-left: 0.9em;
padding-right: 0.9em;
background-color:#56677b;
color: whitesmoke;
}
.btn {
display: inline-block;
background-color: #0076ff;
border: 2px rgba(138, 58, 212, 0.541);
color: rgb(238, 238, 255);
text-decoration: none;
font-weight: bold;
font-size: 1.2em;
border-radius: 6px;
padding: 5px 20px;
margin-top: 1.8em;
margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) {
nav ul {
display: flex;
flex-direction: row;
justify-content: center;
}
}