-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
95 lines (75 loc) · 1.31 KB
/
app.css
File metadata and controls
95 lines (75 loc) · 1.31 KB
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #023047;
}
h1 {
font-weight: 00;
font-size: medium;
}
/* Program table */
.python,
.java {
transform: translateY(5.25em);
border: #ffb703 4px solid;
height: 300px;
width: 36%;
}
section {
display: flex;
justify-content: center;
}
div h2 {
background-color: #ffb703;
text-align: center;
}
.container table {
transform: translateY(2.25em);
margin: auto;
}
.container a {
transition: all 0.3s ease 0s;
}
.container th {
color: #ffb703;
}
.container td a:hover {
color: #ffb703;
box-shadow: 0 0.5em 0.5em -0.4em #ffb703;
}
.container td:hover {
transform: translateY(-0.25em);
}
/* Navigation bar */
li,
a,
button,
h2 {
font-family: 'Source Code Pro', monospace;
font-weight: 500;
color: oldlace;
text-decoration: none;
}
header {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 30px 10%;
}
button {
padding: 9px 25px;
background-color: #ffb703;
border: none;
border-radius: 50px;
transition: all 0.3s ease 0s;
}
button:hover {
transform: translateY(-0.25em);
box-shadow: 0 0.5em 0.5em -0.4em #ffb703;
}
.ide iframe {
display: block;
width: 80%;
border: #ffb703 5px solid;
}