styles.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!--
  4. Base application theme, dependent on API level. This theme is replaced
  5. by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
  6. -->
  7. <style name="AppBaseTheme" parent="android:Theme.Light">
  8. <!--
  9. Theme customizations available in newer API levels can go in
  10. res/values-vXX/styles.xml, while customizations related to
  11. backward-compatibility can go here.
  12. -->
  13. </style>
  14. <!-- Application theme. -->
  15. <style name="AppTheme" parent="AppBaseTheme">
  16. <!-- All customizations that are NOT specific to a particular API-level can go here. -->
  17. </style>
  18. <style name="LoginFormContainer">
  19. <item name="android:layout_width">match_parent</item>
  20. <item name="android:layout_height">wrap_content</item>
  21. <item name="android:padding">16dp</item>
  22. </style>
  23. <style name="common_text_shadow_config">
  24. <item name="android:shadowColor">#c0000000</item>
  25. <item name="android:shadowDx">2</item>
  26. <item name="android:shadowDy">2</item>
  27. <item name="android:shadowRadius">2</item>
  28. </style>
  29. <style name="game_set_text">
  30. <item name="android:textSize">@dimen/layx15</item>
  31. <item name="android:textColor">#fff</item>
  32. </style>
  33. <style name="shop_text_style">
  34. <item name="android:textSize">@dimen/layw18</item>
  35. <item name="android:textColor">#8e3c0c</item>
  36. <item name="android:textStyle">bold</item>
  37. </style>
  38. <style name="shop_title_style">
  39. <item name="android:textSize">@dimen/layw18</item>
  40. <item name="android:textColor">#ffffff</item>
  41. <item name="android:textStyle">bold</item>
  42. </style>
  43. <style name="shade_shallow">
  44. <item name="android:background">#2f000000</item>
  45. </style>
  46. <style name="shade_dark">
  47. <item name="android:background">#9f000000</item>
  48. </style>
  49. </resources>