-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
108 lines (105 loc) · 2.59 KB
/
main.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
* {
box-sizing: border-box; }
html,
body {
padding: 0;
margin: 0; }
#splash {
text-align: center; }
#splash .logo {
position: fixed;
display: inline-block;
background-image: url("../img/am-logo.png");
background-position: center center;
background-size: contain;
background-repeat: no-repeat; }
#splash .inner-text {
position: fixed;
top: 10%;
left: 40%;
border: 2px solid black;
width: 18%;
height: 50%;
overflow: hidden;
box-shadow: 0 2px 3px #333; }
#splash .inner-text .upper-left {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 50%;
border: 2px hidden black;
border-bottom-style: dashed; }
#splash .inner-text .upper-left .circle {
position: absolute;
left: 28%;
top: 13%;
width: 45%;
height: 75%;
color: white;
background: black;
border-radius: 50%;
text-align: center;
padding-top: 10%; }
#splash .inner-text .upper-right {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 50%;
border: 2px hidden black;
border-left-style: dotted; }
#splash .inner-text .upper-right .diamond {
position: absolute;
left: 35%;
top: 30%;
height: 45%;
width: 30%;
background-color: black;
color: white;
text-align: center;
font-size: 2em;
padding: 5%;
transform: rotate(45deg); }
#splash .inner-text .upper-right .diamond * {
transform: rotate(-45deg); }
#splash .inner-text .lower-left {
position: absolute;
bottom: 0;
left: 0;
width: 50%;
height: 50%;
border: 2px hidden black;
border-right-style: double; }
#splash .inner-text .lower-left .square {
position: absolute;
left: 15%;
top: 15%;
width: 70%;
height: 70%;
background: black;
color: white;
text-align: center;
font-size: 2em;
padding-top: 15%; }
#splash .inner-text .lower-right {
position: absolute;
bottom: 0;
right: 0;
width: 50%;
height: 50%;
border: 2px hidden black;
border-top-style: solid; }
#splash .inner-text .lower-right .triangle {
position: absolute;
left: 10%;
top: 25%;
width: 80%;
height: 50%;
background: black;
color: white;
border-radius: 50%;
text-align: center;
font-size: 2em;
padding-top: 8%; }
/*# sourceMappingURL=main.css.map */