-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (119 loc) · 2.49 KB
/
style.css
File metadata and controls
130 lines (119 loc) · 2.49 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
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
body{
background-color: #961432;
}
.col-sm-12{
padding: 15px 0 ;
}
.logo-container{
padding: 0.5rem;
}
.blue{
background-color: #005bae;
margin: 0 auto;
position: relative;
border-radius: 50%;
height: 50rem;
width: 50rem;
box-shadow: 3px 5px 4px black;
}
.red{
height: 94%;
width: 94%;
background-color: #d70328;
border-radius: 50%;
border: 0.35rem solid white;
top: 3%;
left: 3%;
position: relative;
}
.text{
width: 50%;
height: 50%;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size:72px ;
position: absolute;
margin-left: -25px;
left: 50%;
}
.text-top>span{
height: 225px;
width: 45px;
display: inline-block;
position: absolute;
transform-origin: center bottom;
}
.text-top>span:nth-of-type(1){
transform: rotateZ(-70deg);
}
.text-top>span:nth-of-type(2){
transform: rotateZ(-55deg);
}
.text-top>span:nth-of-type(3){
transform: rotateZ(-28deg);
}
.text-top>span:nth-of-type(4){
transform: rotateZ(-8deg);
}
.text-top>span:nth-of-type(5){
transform: rotateZ(11deg);
}
.text-top>span:nth-of-type(6){
transform: rotateZ(28deg);
}
.text-top>span:nth-of-type(7){
transform: rotateZ(48deg);
}
.text-top>span:nth-of-type(8){
transform: rotateZ(70deg);
}
.text-bottom>span{
height: 225px;
width: 45px;
display: inline-block;
position: absolute;
top: 90%;
padding-top: 150px;
transform-origin: center top;
}
.text-bottom>span:nth-of-type(1){
transform: rotateZ(60deg);
}
.text-bottom>span:nth-of-type(2){
transform: rotateZ(40deg);
}
.text-bottom>span:nth-of-type(3){
transform: rotateZ(20deg);
}
.text-bottom>span:nth-of-type(5){
transform: rotateZ(-20deg);
}
.text-bottom>span:nth-of-type(6){
transform: rotateZ(-40deg);
}
.text-bottom>span:nth-of-type(7){
transform: rotateZ(-60deg);
}
.pattern{
background-color: #005bae;
width: 60%;
height: 60%;
position: relative;
top: 20%;
left: 20%;
border-radius: 50%;
border: 0.25rem solid white;
background-color: white;
background-image: linear-gradient(
60deg,
#0167b1 28%,
transparent 28%,
transparent 62%,
#0167b1 62%,
#0167b1
);
background-size: 33px 130px;
transform: rotate(-10deg);
overflow: hidden;
}