-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.css
127 lines (115 loc) · 2.79 KB
/
screen.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
.middle {
top: 40vh;
left: 50vw;
transform: translate(-50%, -50%);
position: absolute;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
}
li {
float: left;
}
li a {
display: block;
color: rgba(0,255,0,.70);
text-align: center;
text-emphasis: bold;
padding: 14px 16px;
text-decoration: none;
}
li a.button{
display: none;
}
li a.icon {
display: none;
}
li a:hover {
background-color: #111;
}
.bugs{
float: right;
background-color: rgba(255, 0,0, 0.7);
}
.bugs a
{
color:rgba(255, 255, 255, 1) !important;
}
#navitems {
display:block;
}
.twrapper{
width: 100%;
margin-top: 10%;
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 3%;
align-items: center;
justify-content: center;
justify-items: center;
text-align: center;
}
.t {
width: 25vw;
height: 50vh;
min-height: 365px;
min-width: 350px;
display: inline-block;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
box-shadow: 0 0 0 0.4vmin rgba(255, 255, 255, 0.9);
}
P.text{
text-align: left;
margin-left: 10px;
margin-right: 10px;
font-family: 'Roboto', sans-serif;
color: rgba(255, 255, 255, 0.8);
font-size: 16px;
}
h2.title {
white-space: nowrap;
overflow: hidden;
font-family: 'Source Code Pro', monospace;
font-size:16px;
color: rgba(0,255,0,.70);
text-align: center;
margin-left: 10px;
margin-right: 10px;
}
.wrapper {
width: 90%;
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
display:grid;
align-items: center;
justify-content: center;
justify-items: center;
text-align: center;
grid-template-columns: repeat(3,1fr);
position: absolute;
}
.projcard {
width: 18.5vw;
height: 45vh;
position: relative;
padding-top: 2vh;
word-wrap: break-word;
overflow: hidden;
border-radius: 1.5vmin;
margin-bottom: 15vh;
}
.projcard .info h2 {
font-weight:bold;
font-family:Source Code Pro;
font-size: 2em;
}
.projcard .info p {
font-style: italic;
font-size: 1em;
}