Browse Source

add splash screen

master
Dslak 6 years ago
parent
commit
612d973192
  1. 2
      vds-app/App/components/Variables.js
  2. 2
      vds-app/App/index.js
  3. 20
      vds-app/App/screens/QuizIndex.js
  4. 6
      vds-app/app.json
  5. BIN
      vds-app/assets/logo.png
  6. 304
      vds-app/assets/logo.svg
  7. BIN
      vds-app/assets/splash.png
  8. 294
      vds-app/assets/splash.svg

2
vds-app/App/components/Variables.js

@ -2,6 +2,8 @@ export const colors = {
white: "#fff", white: "#fff",
white_alpha: "rgba(255, 255, 255, 0.3)", white_alpha: "rgba(255, 255, 255, 0.3)",
black: "#000", black: "#000",
purple: "#780062",
purple_light: "#a30085",
blue: "#36b1f0", blue: "#36b1f0",
dark_blue: "#15a7f0", dark_blue: "#15a7f0",
red: "#af321e", red: "#af321e",

2
vds-app/App/index.js

@ -13,7 +13,7 @@ const MainStack = createStackNavigator({
headerTintColor: colors.white, headerTintColor: colors.white,
backgroundColor: colors.dark_blue, backgroundColor: colors.dark_blue,
headerStyle: { headerStyle: {
backgroundColor: colors.dark_blue
backgroundColor: colors.purple
} }
} }
}, },

20
vds-app/App/screens/QuizIndex.js

@ -17,65 +17,65 @@ import { colors, texts} from "../components/Variables"
import { examQuestions } from "../components/ExamQuestions" import { examQuestions } from "../components/ExamQuestions"
export default ({ navigation }) => ( export default ({ navigation }) => (
<ScrollView style={[{ backgroundColor: colors.dark_blue }]}>
<ScrollView style={[{ backgroundColor: colors.purple }]}>
<StatusBar barStyle="dark-content" /> <StatusBar barStyle="dark-content" />
<RowItem name={texts.aerodynamics} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.aerodynamics} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.aerodynamics, title: texts.aerodynamics,
questions: aerodynamicsQuestions, questions: aerodynamicsQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.first_aid} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.first_aid} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.first_aid, title: texts.first_aid,
questions: firstAidQuestions, questions: firstAidQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.flight_safety} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.flight_safety} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.flight_safety, title: texts.flight_safety,
questions: flightSafetyQuestions, questions: flightSafetyQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.instruments} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.instruments} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.instruments, title: texts.instruments,
questions: instrumentsQuestions, questions: instrumentsQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.legislation} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.legislation} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.legislation, title: texts.legislation,
questions: legislationQuestions, questions: legislationQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.materials} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.materials} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.materials, title: texts.materials,
questions: materialsQuestions, questions: materialsQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.meteorology} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.meteorology} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.meteorology, title: texts.meteorology,
questions: meteorologyQuestions, questions: meteorologyQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.physiopathology} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.physiopathology} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.physiopathology, title: texts.physiopathology,
questions: physiopathologyQuestions, questions: physiopathologyQuestions,
color: colors.blue color: colors.blue
})}/> })}/>
<RowItem name={texts.piloting_techniques} color={colors.blue} textColor={colors.white} onPress={()=>
<RowItem name={texts.piloting_techniques} color={colors.purple_light} textColor={colors.white} onPress={()=>
navigation.navigate("Quiz", { navigation.navigate("Quiz", {
title: texts.piloting_techniques, title: texts.piloting_techniques,
questions: pilotingTechniquesQuestions, questions: pilotingTechniquesQuestions,

6
vds-app/app.json

@ -7,14 +7,14 @@
"platforms": ["ios", "android"], "platforms": ["ios", "android"],
"version": "1.0.0", "version": "1.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/icon.png",
"icon": "./assets/logo.png",
"splash": { "splash": {
"image": "./assets/splash.png", "image": "./assets/splash.png",
"resizeMode": "contain", "resizeMode": "contain",
"backgroundColor": "#ffffff"
"backgroundColor": "#780062"
}, },
"updates": { "updates": {
"fallbackToCacheTimeout": 0
"fallbackToCacheTimeout": 10
}, },
"assetBundlePatterns": ["**/*"], "assetBundlePatterns": ["**/*"],
"ios": { "ios": {

BIN
vds-app/assets/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

304
vds-app/assets/logo.svg

@ -0,0 +1,304 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
inkscape:export-filename="/docs/Dslak/vds_quiz/vds-app/assets/logo.png"
height="250"
width="250"
inkscape:version="1.0beta1 (unknown)"
sodipodi:docname="logo.svg"
xml:space="preserve"
viewBox="0 0 250 250"
y="0px"
x="0px"
id="Ebene_1"
version="1.1"><metadata
id="metadata47">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs45"><linearGradient
inkscape:collect="always"
id="linearGradient945">
<stop
style="stop-color:#ffffff;stop-opacity:0.69839633"
offset="0"
id="stop941" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop943" />
</linearGradient>
<linearGradient
id="linearGradient862"
inkscape:collect="always">
<stop
id="stop858"
offset="0"
style="stop-color:#56168b;stop-opacity:1;" />
<stop
id="stop860"
offset="1"
style="stop-color:#7e20c9;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient1177"
inkscape:collect="always">
<stop
id="stop1173"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1175"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient1113"
inkscape:collect="always">
<stop
id="stop1109"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1111"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<defs
id="defs13">
<rect
y="0"
x="0"
id="SVGID_1_"
width="250"
height="91.900002" />
</defs>
<clipPath
id="SVGID_2_">
<use
height="100%"
width="100%"
y="0"
x="0"
xlink:href="#SVGID_1_"
style="overflow:visible"
id="use15" />
</clipPath>
<linearGradient
gradientTransform="translate(0,158.1)"
gradientUnits="userSpaceOnUse"
y2="77.732155"
x2="77.917458"
y1="-85.32769"
x1="6.22612"
id="linearGradient1115"
xlink:href="#linearGradient1113"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.4791905,0,0,1.4791905,25.462738,22.270725)"
gradientUnits="userSpaceOnUse"
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
id="linearGradient1179"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
gradientTransform="matrix(0.83762215,0,0,0.92541661,-275.43157,-172.04418)"
gradientUnits="userSpaceOnUse"
id="linearGradient1183"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
gradientTransform="matrix(-1.1876812,-0.35290398,0.38989322,-1.3121667,345.47458,152.00026)"
gradientUnits="userSpaceOnUse"
id="linearGradient1212"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="77.732155"
x2="77.917458"
y1="-85.32769"
x1="6.22612"
gradientTransform="matrix(1.4791905,0,0,1.4791905,27.41968,25.871548)"
gradientUnits="userSpaceOnUse"
id="linearGradient1214"
xlink:href="#linearGradient1113"
inkscape:collect="always" />
<mask
id="mask1236"
maskUnits="userSpaceOnUse">
<circle
style="fill:#ffffff;fill-opacity:1;stroke-width:1.02044165"
id="circle1238"
cx="125"
cy="125"
r="125" />
</mask>
<mask
id="mask1243"
maskUnits="userSpaceOnUse">
<circle
style="fill:#ffffff;fill-opacity:1;stroke-width:1.02044165"
id="circle1245"
cx="125"
cy="125"
r="125" />
</mask>
<linearGradient
y2="147.05267"
x2="266.32431"
y1="125"
x1="0"
gradientUnits="userSpaceOnUse"
id="linearGradient866"
xlink:href="#linearGradient862"
inkscape:collect="always" />
<linearGradient
y2="-6.938735"
x2="125.42973"
y1="105.55947"
x1="65.545517"
gradientTransform="matrix(1.4791905,0,0,1.4791905,35.39946,-108.94972)"
gradientUnits="userSpaceOnUse"
id="linearGradient939"
xlink:href="#linearGradient945"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
inkscape:snap-global="false"
inkscape:current-layer="Ebene_1"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:cy="70.326541"
inkscape:cx="-27.962425"
inkscape:zoom="0.98994949"
showgrid="false"
id="namedview43"
inkscape:window-height="719"
inkscape:window-width="1366"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
inkscape:document-rotation="0"
bordercolor="#666666"
pagecolor="#780062" />
<style
id="style10"
type="text/css">
.st0{clip-path:url(#SVGID_2_);}
.st1{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
</style>
<path
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
d="M 123.78078,-110.61685 C -21.266143,-42.820259 248.31586,-27.055783 317.76549,-33.779767 304.15255,-89.820555 242.7175,-131.37241 123.78078,-110.61685 Z"
style="opacity:1;fill:url(#linearGradient939);fill-opacity:1;stroke-width:1.43285;stop-opacity:1"
id="path1143" />
<g
transform="matrix(1.2468695,0,0,1.2468695,-26.936642,-20.714495)"
id="g914">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1214);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.47919px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-opacity:1"
d="m 123.19726,49.810161 -1.45318,0.280247 16.08041,83.499132 -0.10111,-0.0694 -42.37361,-61.556854 -1.219177,0.840713 40.183717,58.373131 -58.173793,-40.001703 -0.837822,1.219178 61.354625,42.188705 1.06606,1.54853 c -1.69332,-0.50097 -2.6209,-0.79403 -5.77231,-1.69009 -10.85734,-3.08719 -31.69355,-8.84723 -71.628068,-19.53861 l -0.384243,1.43008 c 39.9305,10.6903 60.763931,16.44657 71.607841,19.52993 5.42196,1.54168 8.34598,2.41484 9.90942,2.9006 1.56345,0.48577 1.69298,0.5547 1.69298,0.5547 l 0.82338,0.39002 16.35488,-67.814528 -1.43586,-0.346693 -15.95619,66.150451 c -0.25926,-0.0925 -0.1687,-0.076 -1.04005,-0.34669 -0.0387,-0.0118 -0.20237,-0.0598 -0.24268,-0.0722 l 3.87132,-79.324474 -1.47919,-0.07218 -3.77598,77.388814 -0.71071,-0.48825 z"
id="path1094"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#71e000;fill-opacity:1;stop-opacity:1"
inkscape:connector-curvature="0"
id="path36"
clip-path="url(#SVGID_2_)"
d="m 174.4,18.6 c 0,-0.1 -0.1,-0.2 -0.2,-0.3 -0.8,-1.2 -1.7,-2.3 -2.7,-3.3 0,0 0,0 0,0 -3.2,-3.2 -7.6,-5.4 -12.6,-5.9 -0.2,0 -0.5,0 -0.7,-0.1 -5.1,-0.3 -10,1.2 -14,3.9 -0.2,0.2 -0.3,0.2 -0.5,0.4 l 0.4,0.2 c 5.1,2.3 9.8,5.5 13.7,9.3 3.9,3.8 7.2,8.3 9.5,13.3 0.6,1.4 2.3,2.2 4,1.9 0.5,-0.1 0.9,-0.1 1.3,-0.2 1.8,-0.4 3.3,-1.6 3.8,-3.2 0,0 0,0 0,0 0.3,-1.2 0.6,-2.4 0.7,-3.7 0.6,-4.4 -0.4,-8.7 -2.7,-12.3"
class="st0"
transform="matrix(1.8224988,0,0,1.8224988,-134.43399,28.093003)" />
<path
style="opacity:1;stop-opacity:1"
inkscape:connector-curvature="0"
id="path38"
clip-path="url(#SVGID_2_)"
d="m 164.6,7.5 c -34,-23.1 -68.4,12.4 -74.3,36.5 -0.7,3.2 -0.2,5.2 1.6,6.8 3.2,2.1 5.1,2.2 8.3,1 C 108.5,48.4 115.9,34.2 132,19 148.3,3.9 157.3,5.7 164.6,7.5"
class="st1"
transform="matrix(1.8224988,0,0,1.8224988,-134.43399,28.093003)" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:81.7912px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Bold';opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:6.13435;stop-opacity:1"
x="27.656948"
y="191.60994"
id="text1072"><tspan
sodipodi:role="line"
id="tspan1070"
x="27.656948"
y="191.60994"
style="stroke-width:6.13435">QUIZ</tspan></text>
<g
inkscape:label="root"
id="layer1"
inkscape:groupmode="layer" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:50.3479px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Bold';opacity:1;fill:#71e000;fill-opacity:1;stroke-width:3.77609;stop-opacity:1"
x="115.40392"
y="233.62856"
id="text33-1"><tspan
sodipodi:role="line"
id="tspan31-0"
x="115.40392"
y="233.62856"
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Semi-Bold';fill:#71e000;fill-opacity:1;stroke-width:3.77609">VDS</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

BIN
vds-app/assets/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 91 KiB

294
vds-app/assets/splash.svg

@ -0,0 +1,294 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="120"
inkscape:export-xdpi="120"
inkscape:export-filename="/docs/Dslak/vds_quiz/vds-app/assets/splash.png"
height="2436"
width="1242"
inkscape:version="1.0beta1 (unknown)"
sodipodi:docname="splash.svg"
xml:space="preserve"
viewBox="0 0 1242 2436"
y="0px"
x="0px"
id="Ebene_1"
version="1.1"><metadata
id="metadata47">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs45"><linearGradient
id="linearGradient862"
inkscape:collect="always">
<stop
id="stop858"
offset="0"
style="stop-color:#56168b;stop-opacity:1;" />
<stop
id="stop860"
offset="1"
style="stop-color:#7e20c9;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient1177"
inkscape:collect="always">
<stop
id="stop1173"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1175"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient1113"
inkscape:collect="always">
<stop
id="stop1109"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1111"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<defs
id="defs13">
<rect
y="0"
x="0"
id="SVGID_1_"
width="250"
height="91.900002" />
</defs>
<clipPath
id="SVGID_2_">
<use
height="100%"
width="100%"
y="0"
x="0"
xlink:href="#SVGID_1_"
style="overflow:visible"
id="use15" />
</clipPath>
<linearGradient
gradientTransform="translate(0,158.1)"
gradientUnits="userSpaceOnUse"
y2="77.732155"
x2="77.917458"
y1="-85.32769"
x1="6.22612"
id="linearGradient1115"
xlink:href="#linearGradient1113"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.4791905,0,0,1.4791905,25.462738,22.270725)"
gradientUnits="userSpaceOnUse"
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
id="linearGradient1179"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
gradientTransform="matrix(0.83762215,0,0,0.92541661,-275.43157,-172.04418)"
gradientUnits="userSpaceOnUse"
id="linearGradient1183"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="19.294325"
x2="122.02882"
y1="122.54591"
x1="132.76462"
gradientTransform="matrix(-1.1876812,-0.35290398,0.38989322,-1.3121667,345.47458,152.00026)"
gradientUnits="userSpaceOnUse"
id="linearGradient1212"
xlink:href="#linearGradient1177"
inkscape:collect="always" />
<linearGradient
y2="77.732155"
x2="77.917458"
y1="-85.32769"
x1="6.22612"
gradientTransform="matrix(1.4791905,0,0,1.4791905,27.41968,25.871548)"
gradientUnits="userSpaceOnUse"
id="linearGradient1214"
xlink:href="#linearGradient1113"
inkscape:collect="always" />
<mask
id="mask1236"
maskUnits="userSpaceOnUse">
<circle
style="fill:#ffffff;fill-opacity:1;stroke-width:1.02044"
id="circle1238"
cx="125"
cy="125"
r="125" />
</mask>
<mask
id="mask1243"
maskUnits="userSpaceOnUse">
<circle
style="fill:#ffffff;fill-opacity:1;stroke-width:1.02044"
id="circle1245"
cx="125"
cy="125"
r="125" />
</mask>
<linearGradient
y2="147.05267"
x2="266.32431"
y1="125"
x1="0"
gradientUnits="userSpaceOnUse"
id="linearGradient866"
xlink:href="#linearGradient862"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:snap-global="false"
inkscape:current-layer="Ebene_1"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:cy="1210.5244"
inkscape:cx="-169.66468"
inkscape:zoom="0.12374369"
showgrid="false"
id="namedview43"
inkscape:window-height="719"
inkscape:window-width="1366"
inkscape:pageshadow="2"
inkscape:pageopacity="1"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
inkscape:document-rotation="0"
bordercolor="#666666"
pagecolor="#780062" />
<style
id="style10"
type="text/css">
.st0{clip-path:url(#SVGID_2_);}
.st1{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
</style>
<g
transform="translate(318.96439,1070.5177)"
inkscape:label="root"
id="layer1"
inkscape:groupmode="layer" />
<g
transform="matrix(2.6379321,0,0,2.6379321,-511.63508,-2545.6147)"
id="g987">
<g
id="g914"
transform="matrix(1.2468695,0,0,1.2468695,292.02774,1049.8032)">
<path
inkscape:connector-curvature="0"
id="path1094"
d="m 123.19726,49.810161 -1.45318,0.280247 16.08041,83.499132 -0.10111,-0.0694 -42.37361,-61.556854 -1.219177,0.840713 40.183717,58.373131 -58.173793,-40.001703 -0.837822,1.219178 61.354625,42.188705 1.06606,1.54853 c -1.69332,-0.50097 -2.6209,-0.79403 -5.77231,-1.69009 -10.85734,-3.08719 -31.69355,-8.84723 -71.628068,-19.53861 l -0.384243,1.43008 c 39.9305,10.6903 60.763931,16.44657 71.607841,19.52993 5.42196,1.54168 8.34598,2.41484 9.90942,2.9006 1.56345,0.48577 1.69298,0.5547 1.69298,0.5547 l 0.82338,0.39002 16.35488,-67.814528 -1.43586,-0.346693 -15.95619,66.150451 c -0.25926,-0.0925 -0.1687,-0.076 -1.04005,-0.34669 -0.0387,-0.0118 -0.20237,-0.0598 -0.24268,-0.0722 l 3.87132,-79.324474 -1.47919,-0.07218 -3.77598,77.388814 -0.71071,-0.48825 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1214);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.47919px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-opacity:1" />
<path
transform="matrix(1.8224988,0,0,1.8224988,-134.43399,28.093003)"
class="st0"
d="m 174.4,18.6 c 0,-0.1 -0.1,-0.2 -0.2,-0.3 -0.8,-1.2 -1.7,-2.3 -2.7,-3.3 0,0 0,0 0,0 -3.2,-3.2 -7.6,-5.4 -12.6,-5.9 -0.2,0 -0.5,0 -0.7,-0.1 -5.1,-0.3 -10,1.2 -14,3.9 -0.2,0.2 -0.3,0.2 -0.5,0.4 l 0.4,0.2 c 5.1,2.3 9.8,5.5 13.7,9.3 3.9,3.8 7.2,8.3 9.5,13.3 0.6,1.4 2.3,2.2 4,1.9 0.5,-0.1 0.9,-0.1 1.3,-0.2 1.8,-0.4 3.3,-1.6 3.8,-3.2 0,0 0,0 0,0 0.3,-1.2 0.6,-2.4 0.7,-3.7 0.6,-4.4 -0.4,-8.7 -2.7,-12.3"
clip-path="url(#SVGID_2_)"
id="path36"
inkscape:connector-curvature="0"
style="opacity:1;fill:#71e000;fill-opacity:1;stop-opacity:1" />
<path
transform="matrix(1.8224988,0,0,1.8224988,-134.43399,28.093003)"
class="st1"
d="m 164.6,7.5 c -34,-23.1 -68.4,12.4 -74.3,36.5 -0.7,3.2 -0.2,5.2 1.6,6.8 3.2,2.1 5.1,2.2 8.3,1 C 108.5,48.4 115.9,34.2 132,19 148.3,3.9 157.3,5.7 164.6,7.5"
clip-path="url(#SVGID_2_)"
id="path38"
inkscape:connector-curvature="0"
style="opacity:1;stop-opacity:1" />
</g>
<text
id="text1072"
y="1262.1277"
x="346.62134"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:81.7912px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Bold';opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:6.13435;stop-opacity:1"
xml:space="preserve"><tspan
style="stroke-width:6.13435"
y="1262.1277"
x="346.62134"
id="tspan1070"
sodipodi:role="line">QUIZ</tspan></text>
<text
id="text33-1"
y="1304.1462"
x="434.36832"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:50.3479px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Bold';opacity:1;fill:#71e000;fill-opacity:1;stroke-width:3.77609;stop-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Semi-Bold';fill:#71e000;fill-opacity:1;stroke-width:3.77609"
y="1304.1462"
x="434.36832"
id="tspan31-0"
sodipodi:role="line">VDS</tspan></text>
</g>
<text
id="text991"
y="927.66779"
x="766.52698"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.1543px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:Roboto;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.678859"
xml:space="preserve"><tspan
style="stroke-width:0.678859"
y="927.66779"
x="766.52698"
id="tspan989"
sodipodi:role="line">by DSLAK</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Loading…
Cancel
Save